From 2e0a2bc74f437361f745b9f5a259d5f6d5bfe584 Mon Sep 17 00:00:00 2001 From: ddrwode <34234@3来 34> Date: Fri, 27 Feb 2026 16:10:56 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=AC=E4=B8=80=E7=89=88=E7=AD=96=E7=95=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run_bb_full_grid_search.py | 427 +++ .../bb_full_grid_5m_20260226_214834.csv | 26 + .../bb_full_grid_5m_20260226_215016.csv | 26 + .../bb_full_grid_5m_20260226_220149.csv | 101 + .../bb_full_grid_5m_20260226_220319.csv | 17 + .../bb_full_grid_5m_20260226_222227.csv | 401 +++ .../bb_full_grid_5m_20260226_222638.csv | 226 ++ .../bb_full_grid_5m_20260226_224709.csv | 177 ++ .../bb_full_grid_5m_20260227_011737.csv | 2501 +++++++++++++++++ .../bb_full_grid_5m_20260227_115332.csv | 2501 +++++++++++++++++ .../bb_full_grid_5m_20260227_150421.csv | 2501 +++++++++++++++++ ...midline_hier_search_5m_20260226_192735.csv | 2409 ++++++++++++++++ ..._hier_search_5m_20260226_192735_yearly.csv | 7 + 13 files changed, 11320 insertions(+) create mode 100644 run_bb_full_grid_search.py create mode 100644 strategy/results/bb_full_grid_5m_20260226_214834.csv create mode 100644 strategy/results/bb_full_grid_5m_20260226_215016.csv create mode 100644 strategy/results/bb_full_grid_5m_20260226_220149.csv create mode 100644 strategy/results/bb_full_grid_5m_20260226_220319.csv create mode 100644 strategy/results/bb_full_grid_5m_20260226_222227.csv create mode 100644 strategy/results/bb_full_grid_5m_20260226_222638.csv create mode 100644 strategy/results/bb_full_grid_5m_20260226_224709.csv create mode 100644 strategy/results/bb_full_grid_5m_20260227_011737.csv create mode 100644 strategy/results/bb_full_grid_5m_20260227_115332.csv create mode 100644 strategy/results/bb_full_grid_5m_20260227_150421.csv create mode 100644 strategy/results/bb_midline_hier_search_5m_20260226_192735.csv create mode 100644 strategy/results/bb_midline_hier_search_5m_20260226_192735_yearly.csv diff --git a/run_bb_full_grid_search.py b/run_bb_full_grid_search.py new file mode 100644 index 0000000..a9acce2 --- /dev/null +++ b/run_bb_full_grid_search.py @@ -0,0 +1,427 @@ +""" +布林带中轨策略 - 全参数网格搜索 (2020-2025) + +策略逻辑: +- 阳线 + 碰到布林带均线(先涨碰到) → 开多,碰上轨止盈 +- 阴线 + 碰到布林带均线(先跌碰到) → 平多开空,碰下轨止盈 +- 使用 1m 线判断当前K线是先跌碰均线还是先涨碰均线 +- 每根K线只能操作一次 + +参数范围: period 1~1000, std 0.5~1000,按 (0.5,0.5),(0.5,1)...(0.5,1000),(1,0.5),(1,1)...(1000,1000) 顺序遍历 + +回测设置: 200U本金 | 全仓 | 1%权益/单 | 万五手续费 | 90%返佣次日8点到账 | 100x杠杆 + +数据来源: 抓取多周期K线.py 抓取并存入 models/database.db 的 bitmart_eth_5m / bitmart_eth_1m +""" + +from __future__ import annotations + +import argparse +import hashlib +import json +import math +import os +import tempfile +import time +from collections import defaultdict +from concurrent.futures import ProcessPoolExecutor, as_completed +from pathlib import Path + +import numpy as np +import pandas as pd + +from strategy.bb_midline_backtest import BBMidlineConfig, run_bb_midline_backtest +from strategy.data_loader import get_1m_touch_direction, load_klines +from strategy.indicators import bollinger + + +def frange(start: float, end: float, step: float) -> list[float]: + out: list[float] = [] + x = float(start) + while x <= end + 1e-9: + out.append(round(x, 6)) + x += step + return out + + +def build_full_grid( + p_start: float = 1, + p_end: float = 1000, + p_step: float = 1, + s_start: float = 0.5, + s_end: float = 1000, + s_step: float = 0.5, +) -> list[tuple[int, float]]: + """构建完整参数网格,按 (0.5,0.5),(0.5,1)...(0.5,1000),(1,0.5)... 顺序""" + periods = sorted({max(1, min(1000, int(round(v)))) for v in frange(p_start, p_end, p_step)}) + stds = sorted({round(max(0.5, min(1000.0, v)), 2) for v in frange(s_start, s_end, s_step)}) + out = [(p, s) for p in periods for s in stds] + return sorted(set(out)) + + +def score_stable(ret_pct: float, sharpe: float, dd_pct: float, n_trades: int) -> float: + """收益稳定性评分:收益+夏普加分,回撤惩罚,交易过少惩罚""" + sparse_penalty = -5.0 if n_trades < 200 else 0.0 + return ret_pct + sharpe * 12.0 - dd_pct * 0.8 + sparse_penalty + + +def _checkpoint_meta( + period: str, + start: str, + end: str, + p_step: float, + s_step: float, + sample: bool, + focus: bool, + fine: bool, +) -> dict: + return { + "period": period, + "start": start, + "end": end, + "p_step": p_step, + "s_step": s_step, + "sample": sample, + "focus": focus, + "fine": fine, + } + + +def _checkpoint_path(out_dir: Path, meta: dict) -> tuple[Path, Path]: + """返回 checkpoint 数据文件和 meta 文件路径""" + h = hashlib.md5(json.dumps(meta, sort_keys=True).encode()).hexdigest()[:12] + return ( + out_dir / f"bb_full_grid_{meta['period']}_resume_{h}.csv", + out_dir / f"bb_full_grid_{meta['period']}_resume_{h}.meta.json", + ) + + +def load_checkpoint( + ckpt_path: Path, + meta_path: Path, + meta: dict, +) -> tuple[pd.DataFrame, set[tuple[int, float]]]: + """ + 加载断点数据。若文件存在且 meta 一致,返回 (已完成结果df, 已完成的(period,std)集合)。 + 否则返回 (空df, 空集合)。 + """ + if not ckpt_path.exists() or not meta_path.exists(): + return pd.DataFrame(), set() + + try: + with open(meta_path, "r", encoding="utf-8") as f: + saved = json.load(f) + if saved != meta: + return pd.DataFrame(), set() + except (json.JSONDecodeError, OSError): + return pd.DataFrame(), set() + + try: + df = pd.read_csv(ckpt_path) + if "period" not in df.columns or "std" not in df.columns: + return pd.DataFrame(), set() + done = {(int(r["period"]), round(float(r["std"]), 2)) for _, r in df.iterrows()} + return df, done + except Exception: + return pd.DataFrame(), set() + + +def save_checkpoint(ckpt_path: Path, meta_path: Path, meta: dict, rows: list[dict]) -> None: + """追加/覆盖保存断点""" + ckpt_path.parent.mkdir(parents=True, exist_ok=True) + with open(meta_path, "w", encoding="utf-8") as f: + json.dump(meta, f, indent=2) + df = pd.DataFrame(rows) + df.to_csv(ckpt_path, index=False) + + +def _init_worker(df_path: str, df_1m_path: str | None, use_1m: bool, step_min: int): + global G_DF, G_DF_1M, G_USE_1M, G_STEP_MIN + G_DF = pd.read_pickle(df_path) + G_DF_1M = pd.read_pickle(df_1m_path) if (use_1m and df_1m_path) else None + G_USE_1M = bool(use_1m) + G_STEP_MIN = int(step_min) + + +def _eval_period_task(args: tuple[int, list[float]]) -> list[dict]: + period, std_list = args + assert G_DF is not None + + arr_touch_dir = None + if G_USE_1M and G_DF_1M is not None: + close = G_DF["close"].astype(float) + bb_mid, _, _, _ = bollinger(close, period, 1.0) + arr_touch_dir = get_1m_touch_direction(G_DF, G_DF_1M, bb_mid.values, kline_step_min=G_STEP_MIN) + + rows: list[dict] = [] + for std in std_list: + cfg = BBMidlineConfig( + bb_period=period, + bb_std=float(std), + initial_capital=200.0, + margin_pct=0.01, + leverage=100.0, + cross_margin=True, + fee_rate=0.0005, + rebate_pct=0.90, + rebate_hour_utc=0, + fill_at_close=True, + use_1m_touch_filter=G_USE_1M, + kline_step_min=G_STEP_MIN, + ) + result = run_bb_midline_backtest( + G_DF, + cfg, + df_1m=G_DF_1M if G_USE_1M else None, + arr_touch_dir_override=arr_touch_dir, + ) + + eq = result.equity_curve["equity"].dropna() + if len(eq) == 0: + final_eq = 0.0 + ret_pct = -100.0 + dd_u = -200.0 + dd_pct = 100.0 + else: + final_eq = float(eq.iloc[-1]) + ret_pct = (final_eq - cfg.initial_capital) / cfg.initial_capital * 100.0 + dd_u = float((eq.astype(float) - eq.astype(float).cummax()).min()) + dd_pct = abs(dd_u) / cfg.initial_capital * 100.0 + + n_trades = len(result.trades) + win_rate = ( + sum(1 for t in result.trades if t.net_pnl > 0) / n_trades * 100.0 + if n_trades > 0 + else 0.0 + ) + pnl = result.daily_stats["pnl"].astype(float) + sharpe = float(pnl.mean() / pnl.std()) * math.sqrt(365.0) if pnl.std() > 0 else 0.0 + stable_score = score_stable(ret_pct, sharpe, dd_pct, n_trades) + + rows.append({ + "period": period, + "std": round(float(std), 2), + "final_eq": final_eq, + "ret_pct": ret_pct, + "n_trades": n_trades, + "win_rate": win_rate, + "sharpe": sharpe, + "max_dd_u": dd_u, + "max_dd_pct": dd_pct, + "stable_score": stable_score, + }) + return rows + + +def run_grid_search( + params: list[tuple[int, float]], + *, + workers: int, + df_path: str, + df_1m_path: str | None, + use_1m: bool, + step_min: int, + existing_rows: list[dict] | None = None, + ckpt_path: Path | None = None, + meta_path: Path | None = None, + meta: dict | None = None, + checkpoint_interval: int = 5, +) -> pd.DataFrame: + by_period: dict[int, set[float]] = defaultdict(set) + for p, s in params: + by_period[int(p)].add(round(float(s), 2)) + + tasks = [(p, sorted(stds)) for p, stds in sorted(by_period.items())] + total_periods = len(tasks) + total_combos = sum(len(stds) for _, stds in tasks) + rows: list[dict] = list(existing_rows) if existing_rows else [] + + print(f"待运行: {total_combos} 组合 ({total_periods} period组), workers={workers}" + ( + f", 断点续跑 (已有 {len(rows)} 条)" if rows else "" + )) + start = time.time() + last_save = 0 + + def maybe_save(n_done_periods: int): + nonlocal last_save + if ckpt_path and meta_path and meta and n_done_periods > 0: + if n_done_periods - last_save >= checkpoint_interval: + save_checkpoint(ckpt_path, meta_path, meta, rows) + last_save = n_done_periods + + if workers <= 1: + _init_worker(df_path, df_1m_path, use_1m, step_min) + done_periods = 0 + done_combos = 0 + for task in tasks: + res = _eval_period_task(task) + rows.extend(res) + done_periods += 1 + done_combos += len(task[1]) + maybe_save(done_periods) + if done_periods % max(1, total_periods // 20) == 0 or done_periods == total_periods: + elapsed = time.time() - start + print(f"进度 {done_combos}/{total_combos} ({done_periods}/{total_periods} periods), 用时 {elapsed:.0f}s") + else: + done_periods = 0 + done_combos = 0 + try: + with ProcessPoolExecutor( + max_workers=workers, + initializer=_init_worker, + initargs=(df_path, df_1m_path, use_1m, step_min), + ) as ex: + future_map = {ex.submit(_eval_period_task, task): task for task in tasks} + for fut in as_completed(future_map): + period, stds = future_map[fut] + res = fut.result() + rows.extend(res) + done_periods += 1 + done_combos += len(stds) + maybe_save(done_periods) + if done_periods % max(1, total_periods // 20) == 0 or done_periods == total_periods: + elapsed = time.time() - start + print(f"进度 {done_combos}/{total_combos} ({done_periods}/{total_periods} periods), 用时 {elapsed:.0f}s") + except (PermissionError, OSError) as e: + print(f"多进程不可用 ({e}),改用单进程...") + _init_worker(df_path, df_1m_path, use_1m, step_min) + done_periods = 0 + done_combos = 0 + for task in tasks: + res = _eval_period_task(task) + rows.extend(res) + done_periods += 1 + done_combos += len(task[1]) + maybe_save(done_periods) + if done_periods % max(1, total_periods // 20) == 0 or done_periods == total_periods: + elapsed = time.time() - start + print(f"进度 {done_combos}/{total_combos} ({done_periods}/{total_periods} periods), 用时 {elapsed:.0f}s") + + if ckpt_path and meta_path and meta and rows: + save_checkpoint(ckpt_path, meta_path, meta, rows) + + df = pd.DataFrame(rows) + print(f"完成, 总用时 {time.time() - start:.1f}s") + return df + + +def main(): + parser = argparse.ArgumentParser(description="布林带全参数网格搜索 (1-1000, 0.5-1000)") + parser.add_argument("-p", "--period", default="5m", choices=["5m", "15m", "30m"]) + parser.add_argument("--start", default="2020-01-01") + parser.add_argument("--end", default="2026-01-01") + parser.add_argument("-j", "--workers", type=int, default=max(1, (os.cpu_count() or 4) - 1)) + parser.add_argument("--no-1m", action="store_true", help="禁用 1m 触及方向过滤") + parser.add_argument("--p-step", type=float, default=5, help="period 步长 (默认5, 全量用1)") + parser.add_argument("--s-step", type=float, default=5, help="std 步长 (默认5, 全量用0.5或1)") + parser.add_argument("--quick", action="store_true", help="快速模式: p-step=20, s-step=20") + parser.add_argument("--sample", action="store_true", help="采样模式: 仅用2022-2024两年加速") + parser.add_argument("--focus", action="store_true", help="聚焦模式: 仅在period 50-400, std 100-800 细搜") + parser.add_argument("--fine", action="store_true", help="精细模式: 在period 280-310, std 450-550 细搜") + parser.add_argument("--no-resume", action="store_true", help="禁用断点续跑,重新开始") + parser.add_argument("--checkpoint-interval", type=int, default=10, + help="每完成 N 个 period 组保存一次断点 (默认 10)") + args = parser.parse_args() + + use_1m = not args.no_1m + step_min = int(args.period.replace("m", "")) + if args.sample: + args.start, args.end = "2022-01-01", "2024-01-01" + print("采样模式: 使用 2022-2024 数据加速") + + if args.quick: + p_step, s_step = 20.0, 20.0 + else: + p_step, s_step = args.p_step, args.s_step + + if args.fine: + params = build_full_grid(p_start=280, p_end=300, p_step=2, s_start=480, s_end=510, s_step=2) + print("精细模式: period 280-300 step=2, std 480-510 step=2 (~176组合)") + elif args.focus: + params = build_full_grid(p_start=50, p_end=400, p_step=25, s_start=100, s_end=800, s_step=50) + print("聚焦模式: period 50-400 step=25, std 100-800 step=50 (~225组合)") + else: + params = build_full_grid(p_step=p_step, s_step=s_step) + print(f"网格参数: period 1-1000 step={p_step}, std 0.5-1000 step={s_step} → {len(params)} 组合") + + out_dir = Path(__file__).resolve().parent / "strategy" / "results" + out_dir.mkdir(parents=True, exist_ok=True) + + meta = _checkpoint_meta( + args.period, args.start, args.end, p_step, s_step, + args.sample, args.focus, args.fine, + ) + ckpt_path, meta_path = _checkpoint_path(out_dir, meta) + existing_rows: list[dict] = [] + params_to_run = params + + if not args.no_resume: + ckpt_df, done_set = load_checkpoint(ckpt_path, meta_path, meta) + if len(done_set) > 0: + existing_rows = ckpt_df.to_dict("records") + params_to_run = [(p, s) for p, s in params if (int(p), round(float(s), 2)) not in done_set] + print(f"断点续跑: 已完成 {len(done_set)} 组合,剩余 {len(params_to_run)} 组合") + + if not params_to_run: + print("无待运行组合,直接使用断点结果") + all_df = pd.DataFrame(existing_rows) + else: + print(f"\n加载数据: {args.period} + 1m, {args.start} ~ {args.end}") + t0 = time.time() + df = load_klines(args.period, args.start, args.end) + df_1m = load_klines("1m", args.start, args.end) if use_1m else None + print(f" {args.period}: {len(df):,} 条" + (f", 1m: {len(df_1m):,} 条" if df_1m is not None else "") + f", {time.time()-t0:.1f}s\n") + + with tempfile.NamedTemporaryFile(suffix=".pkl", delete=False) as f_df: + df.to_pickle(f_df.name) + df_path = f_df.name + df_1m_path = None + if df_1m is not None: + with tempfile.NamedTemporaryFile(suffix=".pkl", delete=False) as f_1m: + df_1m.to_pickle(f_1m.name) + df_1m_path = f_1m.name + + try: + all_df = run_grid_search( + params_to_run, + workers=args.workers, + df_path=df_path, + df_1m_path=df_1m_path, + use_1m=use_1m, + step_min=step_min, + existing_rows=existing_rows, + ckpt_path=ckpt_path, + meta_path=meta_path, + meta=meta, + checkpoint_interval=args.checkpoint_interval, + ) + finally: + Path(df_path).unlink(missing_ok=True) + if df_1m_path: + Path(df_1m_path).unlink(missing_ok=True) + + all_df = all_df.drop_duplicates(subset=["period", "std"], keep="last") + + best_stable = all_df.sort_values("stable_score", ascending=False).iloc[0] + best_return = all_df.sort_values("ret_pct", ascending=False).iloc[0] + + stamp = time.strftime("%Y%m%d_%H%M%S") + out_path = out_dir / f"bb_full_grid_{args.period}_{stamp}.csv" + all_df.sort_values("stable_score", ascending=False).to_csv(out_path, index=False) + + print("\n" + "=" * 80) + print("全参数网格搜索完成") + print(f"最佳稳定参数: period={int(best_stable['period'])}, std={float(best_stable['std']):.2f}") + print(f" 最终权益: {best_stable['final_eq']:.2f} U | 收益: {best_stable['ret_pct']:+.2f}%") + print(f" 最大回撤: {best_stable['max_dd_pct']:.2f}% | 夏普: {best_stable['sharpe']:.3f} | 交易数: {int(best_stable['n_trades'])}") + print() + print(f"最高收益参数: period={int(best_return['period'])}, std={float(best_return['std']):.2f}") + print(f" 最终权益: {best_return['final_eq']:.2f} U | 收益: {best_return['ret_pct']:+.2f}%") + print(f" 最大回撤: {best_return['max_dd_pct']:.2f}% | 夏普: {best_return['sharpe']:.3f} | 交易数: {int(best_return['n_trades'])}") + print(f"\n结果已保存: {out_path}") + print(f"断点文件: {ckpt_path.name} (可用 --no-resume 重新开始)") + print("=" * 80) + + +if __name__ == "__main__": + main() diff --git a/strategy/results/bb_full_grid_5m_20260226_214834.csv b/strategy/results/bb_full_grid_5m_20260226_214834.csv new file mode 100644 index 0000000..86bed3d --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260226_214834.csv @@ -0,0 +1,26 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832 +401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248 +201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145 +1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773 +601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 diff --git a/strategy/results/bb_full_grid_5m_20260226_215016.csv b/strategy/results/bb_full_grid_5m_20260226_215016.csv new file mode 100644 index 0000000..6633047 --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260226_215016.csv @@ -0,0 +1,26 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +801,0.5,181.43296931677935,-9.283515341610325,4050,30.0,-0.09570947529404288,-101.50183051832926,50.75091525916463,-51.03276125247054 +601,0.5,93.62899070862777,-53.18550464568612,4692,31.60699062233589,-0.5815001553833595,-197.11225415652723,98.55612707826361,-139.00840817289733 +401,0.5,62.32779858408545,-68.83610070795727,5759,33.79058864386178,-1.4213594190051202,-161.96245274664543,80.98122637332271,-150.67739483467687 +201,0.5,89.02955479967403,-55.485222600162984,8469,35.48234738457906,-0.5773758988733515,-241.43620122699747,120.71810061349872,-158.98821387744218 +401,400.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,200.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,800.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,600.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +801,600.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,400.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,200.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,800.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +1,200.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,800.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,600.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,400.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,0.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +601,200.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,400.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,600.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,800.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +201,800.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,600.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,400.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,200.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 diff --git a/strategy/results/bb_full_grid_5m_20260226_220149.csv b/strategy/results/bb_full_grid_5m_20260226_220149.csv new file mode 100644 index 0000000..5818ebd --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260226_220149.csv @@ -0,0 +1,101 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +301,800.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,900.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,400.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,300.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,200.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,100.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,700.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,600.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,500.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +901,0.5,13.45175555605595,-93.27412222197202,10264,30.670303975058456,-0.8952537525217249,-189.5983790965677,94.79918954828385,-179.8565188908598 +801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832 +501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172 +701,0.5,1.6035402845204254,-99.19822985773979,12485,31.229475370444533,-0.8874406539711374,-198.89129268300212,99.44564634150106,-189.40403477859428 +101,0.5,2.9344181713149435,-98.53279091434253,35484,40.70003381805884,-1.0207595955600905,-200.5343407319586,100.2671703659793,-190.99564235384705 +401,700.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,900.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,100.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,500.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,300.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248 +201,900.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,700.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,500.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,300.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,100.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +301,0.5,3.288758436016597,-98.3556207819917,18999,36.78614663929681,-0.9796482828217248,-210.34848032205863,105.17424016102932,-194.25079230467585 +201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145 +1,100.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,900.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,300.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,700.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773 +501,300.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,200.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,600.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,100.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,700.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,800.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,900.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,400.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +101,900.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,100.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,200.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,300.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,400.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,500.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,600.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,700.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,800.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +601,700.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,900.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,300.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,500.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,100.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +701,700.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,900.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,800.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,600.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,500.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,400.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,300.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,200.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,100.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,900.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,700.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,300.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,500.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,100.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +901,100.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,200.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,300.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,400.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,500.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,600.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,700.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,800.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,900.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 diff --git a/strategy/results/bb_full_grid_5m_20260226_220319.csv b/strategy/results/bb_full_grid_5m_20260226_220319.csv new file mode 100644 index 0000000..c79a783 --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260226_220319.csv @@ -0,0 +1,17 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +751,250.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,500.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,750.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172 +751,0.5,6.787536497792063,-96.60623175110396,11769,31.701928795989463,-0.8973785204314527,-208.02359739762167,104.01179869881084,-190.58421295533006 +251,0.5,1.2582263129595197,-99.37088684352024,21094,37.47985209064189,-1.1405413234039807,-199.63192120071835,99.81596060035918,-192.91015120465536 +251,250.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,500.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,750.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,250.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,750.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +501,250.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,750.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 diff --git a/strategy/results/bb_full_grid_5m_20260226_222227.csv b/strategy/results/bb_full_grid_5m_20260226_222227.csv new file mode 100644 index 0000000..2369261 --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260226_222227.csv @@ -0,0 +1,401 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +301,100.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,600.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,300.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,350.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,400.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,450.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,500.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,550.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,650.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,200.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,750.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,800.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,850.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,900.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,950.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,50.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,250.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,700.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,150.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +751,350.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,800.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,300.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,150.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,100.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,50.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,950.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,900.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,250.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,850.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,750.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,700.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,650.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,600.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,550.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,500.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,450.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,400.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +751,200.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604 +901,0.5,13.45175555605595,-93.27412222197202,10264,30.670303975058456,-0.8952537525217249,-189.5983790965677,94.79918954828385,-179.8565188908598 +851,0.5,13.139093314987317,-93.43045334250634,10724,31.90041029466617,-0.8457807204487175,-197.00597073746417,98.50298536873208,-182.38221028287663 +351,550.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,800.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,600.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,650.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,700.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,750.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,450.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,850.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,500.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,200.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,400.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,950.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,350.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,300.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,250.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,150.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,100.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,50.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +351,900.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095 +801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832 +551,0.5,4.519023184638675,-97.74048840768066,14150,33.36395759717314,-0.9378467165440548,-198.0691055074856,99.0345527537428,-188.22229120920355 +501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172 +701,0.5,1.6035402845204254,-99.19822985773979,12485,31.229475370444533,-0.8874406539711374,-198.89129268300212,99.44564634150106,-189.40403477859428 +551,350.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,600.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,300.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,950.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,900.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,850.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,800.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,700.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,650.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,750.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,550.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,450.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,400.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,50.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,100.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,150.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,200.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,250.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +551,500.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108 +751,0.5,6.787536497792063,-96.60623175110396,11769,31.701928795989463,-0.8973785204314527,-208.02359739762167,104.01179869881084,-190.58421295533006 +101,0.5,2.9344181713149435,-98.53279091434253,35484,40.70003381805884,-1.0207595955600905,-200.5343407319586,100.2671703659793,-190.99564235384705 +401,750.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,650.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,700.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,950.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,850.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,900.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,500.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,550.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,300.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,450.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,350.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,250.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,150.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,100.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,50.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +351,0.5,3.361096585733224,-98.31945170713338,17810,36.27175743964065,-1.2209929603510115,-197.10747569782964,98.55373784891482,-191.8143575104774 +451,0.5,2.329711769566727,-98.83514411521664,16156,34.27209705372617,-1.1239876151275339,-199.45433646360712,99.72716823180356,-192.1047300821899 +401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248 +251,0.5,1.2582263129595197,-99.37088684352024,21094,37.47985209064189,-1.1405413234039807,-199.63192120071835,99.81596060035918,-192.91015120465536 +201,750.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,250.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,500.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,850.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,700.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,650.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,550.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,450.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,950.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,350.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,300.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,150.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,100.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,900.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,50.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +301,0.5,3.288758436016597,-98.3556207819917,18999,36.78614663929681,-0.9796482828217248,-210.34848032205863,105.17424016102932,-194.25079230467585 +201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145 +151,0.5,0.447147524480946,-99.77642623775952,28965,38.933195235629206,-1.118503991656886,-203.0492986206653,101.52464931033265,-194.41819358590828 +51,0.5,0.2647932025146436,-99.86760339874267,50009,41.39054970105381,-1.3185573829105623,-200.91043500058367,100.45521750029182,-196.05446599390288 +51,550.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,250.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,300.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,350.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,400.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,450.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,500.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,100.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,600.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,700.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,750.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,50.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,800.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,850.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,900.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,950.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,650.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,200.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +51,150.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184 +251,250.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,300.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,500.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,550.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,600.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,650.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,700.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,750.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,800.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,850.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,900.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,950.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,350.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,400.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,450.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,200.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,150.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,100.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +251,50.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995 +451,400.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,50.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,100.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,150.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,200.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,250.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,300.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,350.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,600.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,950.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,900.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,850.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,800.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,750.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,700.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,650.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,550.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,500.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +451,450.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008 +651,0.5,8.018313005737676,-95.99084349713117,13136,32.14068209500609,-0.8122633291075041,-232.77203302005913,116.38601651002955,-198.84681665444486 +951,0.5,2.5894181323552834,-98.70529093382235,9665,30.17071908949819,-0.8040188151074918,-230.08606629610864,115.04303314805433,-200.38794323355572 +1,50.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,300.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,100.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,750.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,700.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,650.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,550.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,450.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,250.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,850.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,900.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,950.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,150.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,350.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773 +501,750.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,950.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,900.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,850.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,800.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,650.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,700.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,350.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,50.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,100.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,150.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,200.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,300.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,250.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,400.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,450.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,550.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,600.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +101,600.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,350.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,100.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,450.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,500.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,550.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,150.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,650.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,700.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,750.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,800.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,850.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,900.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,950.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,50.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,300.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,250.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,200.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,400.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +151,900.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,950.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,100.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,500.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,400.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,50.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,350.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,300.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,250.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,200.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,450.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,150.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,550.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,600.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,650.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,700.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,750.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,800.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +151,850.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077 +651,650.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,950.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,900.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,800.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,750.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,700.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,850.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,600.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,550.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,500.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,450.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,350.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,300.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,250.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,200.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,150.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,100.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,50.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +651,400.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369 +951,450.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,900.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,50.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,350.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,300.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,250.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,200.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,150.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,100.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,500.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,850.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,550.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,400.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,650.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,700.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,750.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,800.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,600.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +951,950.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083 +601,500.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,950.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,850.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,750.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,700.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,650.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,550.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,450.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,350.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,300.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,250.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,150.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,100.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,50.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,900.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +701,50.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,950.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,100.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,900.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,750.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,600.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,400.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,500.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,550.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,350.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,650.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,700.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,800.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,850.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,300.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,450.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,250.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,200.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,150.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +801,50.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,100.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,150.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,300.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,350.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,450.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,500.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,950.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,900.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,850.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,750.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,700.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,650.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,550.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,250.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +851,600.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,950.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,900.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,800.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,750.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,700.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,650.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,550.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,500.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,450.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,400.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,350.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,300.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,250.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,200.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,150.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,100.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,50.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +851,850.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297 +901,150.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,100.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,50.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,250.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,300.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,350.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,400.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,450.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,500.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,550.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,600.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,650.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,700.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,750.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,800.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,850.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,900.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,950.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,200.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 diff --git a/strategy/results/bb_full_grid_5m_20260226_222638.csv b/strategy/results/bb_full_grid_5m_20260226_222638.csv new file mode 100644 index 0000000..3e1d2e1 --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260226_222638.csv @@ -0,0 +1,226 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +275,800.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,750.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,150.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,200.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,250.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,300.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,350.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,400.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,450.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,500.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,550.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,600.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,650.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,700.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +275,100.0,63.55924228204109,-68.22037885897946,20470,20.058622374206156,-0.3140671553821636,-228.29076347059168,114.14538173529584,-163.3054901118021 +300,150.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,800.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,750.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,700.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,650.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,600.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,550.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,100.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,450.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,400.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,350.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,300.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,250.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,500.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,200.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +350,100.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,550.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,200.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,800.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,750.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,700.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,650.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,600.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,150.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,500.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,400.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,350.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,300.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,250.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +350,450.0,13.8291982163463,-93.08540089182685,17935,19.643155840535268,-0.5586854218498274,-197.30541575157045,98.65270787578523,-178.71179225465298 +225,350.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,100.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,150.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,200.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,250.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,300.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,550.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,400.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,500.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,600.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,650.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,700.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,750.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,800.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +225,450.0,17.642989940727276,-91.17850502963637,22436,20.61864860046354,-0.5167117069353269,-219.0165143940866,109.5082571970433,-184.98565127049494 +200,800.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,100.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,700.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,650.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,600.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,550.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,500.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,450.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,400.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,350.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,300.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,250.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,200.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,150.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +200,750.0,14.212906844859912,-92.89354657757005,24289,20.783070525752397,-0.795587271880617,-220.04371571904193,110.02185785952096,-190.45808012775422 +325,800.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,750.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,150.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,200.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,250.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,300.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,350.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,100.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,400.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,450.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,500.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,550.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,600.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,650.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +325,700.0,33.78902220405962,-83.10548889797019,18507,19.570973145296374,-0.3316849452234392,-262.39266677359524,131.19633338679762,-192.04277495008955 +400,750.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,100.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,700.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,650.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,600.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,550.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,500.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,450.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,350.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,300.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,250.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,200.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,150.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,400.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +400,800.0,3.336676356690486,-98.33166182165476,17187,19.369290743003432,-0.5990111734201886,-220.44329138515295,110.22164569257646,-193.6971124567582 +75,750.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,400.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,800.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,100.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,150.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,200.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,300.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,350.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,250.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,450.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,500.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,550.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,600.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,650.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +75,700.0,0.6511222814515799,-99.6744388592742,42066,21.69923453620501,-0.6722580565842263,-217.13993724528302,108.56996862264153,-194.59751043639815 +250,500.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,800.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,750.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,700.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,650.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,600.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,550.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,450.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,350.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,300.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,250.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,200.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,150.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,100.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +250,400.0,18.30016848529524,-90.84991575735238,21226,20.36653161217375,-0.35818251935373785,-255.28266600918914,127.64133300459457,-197.2611723932729 +375,150.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,500.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,250.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,300.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,350.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,400.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,450.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,700.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,550.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,600.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,650.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,750.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,800.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,100.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +375,200.0,5.937868901039763,-97.03106554948012,17595,19.30093776641091,-1.0463498951646035,-219.2851323144315,109.64256615721575,-197.30131721722796 +50,100.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,750.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,700.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,650.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,600.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,550.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,500.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,450.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,150.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,400.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,350.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,300.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,250.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,200.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +50,800.0,0.20229758805618503,-99.89885120597191,52558,22.158377411621448,-0.977563863811585,-230.59754074358267,115.29877037179132,-203.868633869144 +125,100.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,800.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,150.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,700.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,650.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,600.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,550.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,500.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,450.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,400.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,350.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,300.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,250.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,200.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +125,750.0,1.334577627395088,-99.33271118630246,32325,21.11987625676721,-0.4820672247830791,-256.24427480478045,128.12213740239022,-207.6152278056116 +150,100.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,150.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,250.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,300.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,350.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,400.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,450.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,500.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,550.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,600.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,650.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,700.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,750.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,800.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +150,200.0,0.7433418443261947,-99.62832907783691,29333,20.301367060989328,-0.5789198728571853,-271.1227462874435,135.56137314372174,-215.02446606710055 +100,800.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,750.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,400.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,650.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,600.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,550.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,500.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,450.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,700.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,350.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,250.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,200.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,150.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,100.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +100,300.0,6.102892798816175,-96.94855360059191,36266,21.471902057023108,-0.4248636518486794,-301.4147033407358,150.7073516703679,-222.6127987590704 +175,400.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,700.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,650.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,600.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,550.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,500.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,450.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,250.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,350.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,300.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,200.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,150.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,100.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,750.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 +175,800.0,12.4581987388331,-93.77090063058345,26341,20.64462245169128,-0.43133451172875364,-347.90454143788213,173.95227071894107,-238.10873134648136 diff --git a/strategy/results/bb_full_grid_5m_20260226_224709.csv b/strategy/results/bb_full_grid_5m_20260226_224709.csv new file mode 100644 index 0000000..64972e6 --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260226_224709.csv @@ -0,0 +1,177 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +290,496.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,510.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,482.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,484.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,486.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,488.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,490.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,492.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,494.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,498.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,500.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,502.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,504.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,506.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,508.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +290,480.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306 +294,510.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,492.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,508.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,482.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,484.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,486.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,488.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,490.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,480.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,494.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,506.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,498.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,500.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,502.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,504.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +294,496.0,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927 +292,480.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,482.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,484.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,488.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,490.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,492.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,494.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,486.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,498.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,508.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,500.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,510.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,496.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,506.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,502.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +292,504.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689 +296,494.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,506.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,504.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,502.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,500.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,498.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,496.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,492.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,490.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,488.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,484.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,482.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,480.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,510.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,486.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +296,508.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747 +288,480.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,498.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,482.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,510.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,508.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,506.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,504.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,502.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,500.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,494.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,496.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,484.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,492.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,490.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,488.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +288,486.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232 +298,486.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,488.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,490.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,492.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,494.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,502.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,498.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,500.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,482.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,504.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,508.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,510.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,484.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,506.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,496.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +298,480.0,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299 +282,492.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,506.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,504.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,502.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,500.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,496.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,494.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,490.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,510.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,488.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,486.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,484.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,482.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,480.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,508.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +282,498.0,27.64626455726074,-86.17686772136963,19974,19.71563031941524,-0.3474516454590287,-198.63022266628306,99.31511133314153,-169.7983765333912 +286,484.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,496.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,508.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,486.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,488.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,490.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,492.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,494.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,482.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,498.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,480.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,502.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,504.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,510.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,506.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +286,500.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342 +300,496.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,508.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,506.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,504.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,502.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,500.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,498.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,490.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,494.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,492.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,488.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,486.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,484.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,482.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,480.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +300,510.0,45.636613027184836,-77.18169348640758,19146,20.531703750130575,-0.4725797195498165,-233.02158222956754,116.51079111478377,-176.0612830128324 +280,482.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,510.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,484.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,486.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,488.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,490.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,492.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,494.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,496.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,498.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,500.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,502.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,504.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,506.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,508.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +280,480.0,65.63691589272076,-67.18154205363962,20060,20.004985044865403,-0.1793386285305311,-276.8334911466567,138.41674557332834,-180.06700205466868 +284,510.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,482.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,484.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,486.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,488.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,490.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,492.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,494.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,496.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,498.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,500.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,502.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,504.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,506.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,508.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 +284,480.0,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688 diff --git a/strategy/results/bb_full_grid_5m_20260227_011737.csv b/strategy/results/bb_full_grid_5m_20260227_011737.csv new file mode 100644 index 0000000..2a28370 --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260227_011737.csv @@ -0,0 +1,2501 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +761,860.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,460.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,500.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,520.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,540.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,560.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,580.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,600.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,620.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,660.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,680.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,700.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,720.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,740.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,760.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,780.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,800.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,820.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,840.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,880.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,900.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,920.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,940.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,960.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,980.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,480.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,640.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,440.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,220.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,20.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,40.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,420.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,80.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,100.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,120.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,140.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,160.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,180.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,200.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,60.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,240.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,340.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,260.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,400.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,360.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,380.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,320.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,300.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,280.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +321,780.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,940.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,760.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,800.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,820.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,840.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,860.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,880.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,900.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,920.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,220.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,960.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,980.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,240.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,200.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,180.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,120.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,140.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,160.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,720.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,740.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,660.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,700.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,680.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,320.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,340.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,80.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,360.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,380.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,400.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,420.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,440.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,460.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,480.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,500.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,520.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,540.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,560.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,580.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,600.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,620.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,640.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,260.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,100.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,300.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,60.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,40.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,20.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,280.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +301,220.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,200.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,560.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,540.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,520.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,500.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,480.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,460.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,440.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,420.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,400.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,380.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,600.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,340.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,320.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,300.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,280.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,260.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,240.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,360.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,640.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,620.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,120.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,100.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,80.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,140.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,960.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,940.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,920.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,900.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,880.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,860.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,840.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,820.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,800.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,780.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,760.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,740.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,720.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,700.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,680.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,660.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,580.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,980.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,160.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,60.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,20.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,40.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,180.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +381,20.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,340.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,540.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,520.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,500.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,480.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,460.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,440.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,420.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,400.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,380.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,360.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,320.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,580.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,300.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,280.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,260.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,240.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,220.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,200.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,180.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,160.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,140.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,40.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,560.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,600.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,120.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,620.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,60.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,80.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,980.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,960.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,940.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,920.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,900.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,880.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,860.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,840.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,820.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,800.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,780.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,760.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,740.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,720.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,700.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,680.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,660.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,640.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,100.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +901,0.5,13.45175555605595,-93.27412222197202,10264,30.670303975058456,-0.8952537525217249,-189.5983790965677,94.79918954828385,-179.8565188908598 +941,20.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,980.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,960.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,260.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,440.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,420.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,400.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,380.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,360.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,340.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,320.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,300.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,280.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,240.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,940.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,220.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,200.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,180.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,160.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,140.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,120.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,100.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,80.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,60.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,460.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,480.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,500.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,520.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,40.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,900.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,880.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,860.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,840.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,820.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,800.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,780.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,760.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,740.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,720.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,700.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,660.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,640.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,620.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,600.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,580.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,560.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,540.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,920.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,680.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +541,0.5,10.834367893235116,-94.58281605338244,14312,33.81078814980436,-0.8522333566611422,-193.88867920854335,96.94433960427168,-182.3650880167335 +421,0.5,9.443862362662603,-95.2780688186687,16675,34.90254872563718,-0.8565356226326339,-192.34325145502493,96.17162572751246,-182.4937968722703 +841,0.5,10.310183575424741,-94.84490821228763,10861,31.332289844397387,-0.8530388841648758,-194.76150808693225,97.38075404346613,-182.98597805703906 +881,0.5,7.902916791508354,-96.04854160424583,10417,30.181434194105787,-0.8335536004007106,-193.29365415378072,96.64682707689036,-183.36864647056666 +541,960.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,900.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,480.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,500.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,520.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,940.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,540.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,560.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,580.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,600.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,640.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,660.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,680.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,700.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,720.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,460.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,760.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,780.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,800.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,820.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,840.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,860.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,980.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,920.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,880.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,740.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,620.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,440.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,160.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,340.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,320.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,300.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,280.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,260.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,240.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,220.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,400.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,180.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,200.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,140.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,120.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,100.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,80.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,60.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,40.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,20.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,360.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,380.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,420.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +281,760.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,980.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,960.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,940.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,920.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,900.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,860.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,620.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,500.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,260.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,280.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,300.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,320.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,340.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,360.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,380.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,400.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,420.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,440.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,460.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,480.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,520.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,220.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,540.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,560.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,580.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,600.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,640.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,660.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,680.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,700.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,800.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,780.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,720.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,740.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,240.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,880.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,200.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,80.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,180.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,840.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,20.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,40.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,60.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,820.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,100.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,120.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,140.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,160.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +741,0.5,6.2843425417073675,-96.85782872914632,11873,31.390549987366295,-0.8969392876396447,-195.7980518666004,97.8990259333002,-185.9403209274622 +781,0.5,17.733610917320206,-91.13319454133989,11550,31.151515151515152,-0.6099123010425335,-219.71294931989848,109.85647465994923,-186.33732188180966 +921,0.5,4.73236668283665,-97.63381665858168,10152,30.112293144208035,-0.8537636993391946,-197.13439496111206,98.56719748055603,-186.73273903509684 +721,540.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,480.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,500.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,520.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,600.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,560.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,580.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,620.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,640.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,440.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,460.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,320.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,420.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,400.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,380.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,360.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,340.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,680.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,300.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,280.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,260.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,240.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,220.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,660.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,760.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,700.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,180.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,140.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,120.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,100.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,80.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,60.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,40.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,720.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,20.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,200.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,980.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,960.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,940.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,920.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,900.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,880.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,860.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,840.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,820.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,800.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,780.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,740.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,160.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +341,0.5,5.788510218720986,-97.10574489063951,18061,36.35457615857372,-1.0526229448270583,-195.16565780442238,97.58282890221119,-187.80348335033318 +221,0.5,4.242820866036348,-97.87858956698183,22445,38.63666740922254,-0.9196466378796627,-197.80610797535374,98.90305398767687,-188.03679241167927 +381,0.5,9.934051561244726,-95.03297421937764,17401,35.50945347968508,-1.2765189466749551,-194.33574840442995,97.16787420221497,-188.08550094124908 +801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832 +861,0.5,7.930601469730025,-96.03469926513499,10675,31.447306791569083,-0.9545591710130511,-201.6103170711225,100.80515853556125,-188.1335361457406 +441,0.5,6.117433319922491,-96.94128334003875,16368,34.81793743890518,-1.1115302583029414,-195.0745602810249,97.53728014051245,-188.309470552084 +361,0.5,4.01659208585399,-97.991703957073,17629,35.98048669805434,-0.9845513107550989,-196.46816193986626,98.23408096993313,-188.3935844620807 +261,0.5,7.194864160194866,-96.40256791990257,20778,37.145057272114734,-1.1027981263110411,-197.99166960822132,98.99583480411066,-188.8328132789236 +501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172 +61,240.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,280.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,480.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,460.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,440.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,420.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,400.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,380.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,360.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,340.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,320.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,300.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,260.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,520.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,220.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,200.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,180.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,160.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,140.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,120.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,100.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,80.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,60.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,40.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,500.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,540.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,800.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,780.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,940.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,920.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,900.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,880.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,860.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,840.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,20.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,820.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,560.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,760.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,980.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,740.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,720.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,700.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,680.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,660.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,640.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,620.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,600.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,580.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,960.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +481,0.5,2.4364511524355414,-98.78177442378222,15682,33.911490881265145,-0.9403760880916001,-197.7897151962296,98.8948575981148,-189.18217355937327 +561,0.5,4.83477664373758,-97.58261167813122,13960,33.60315186246418,-0.7538269033982785,-206.79941606417282,103.39970803208641,-189.3483009445797 +701,0.5,1.6035402845204254,-99.19822985773979,12485,31.229475370444533,-0.8874406539711374,-198.89129268300212,99.44564634150106,-189.40403477859428 +521,0.5,2.001378041348415,-98.9993109793258,14987,33.14872889837859,-0.832422567585732,-201.2401742727141,100.62008713635706,-189.48445149944024 +281,0.5,1.769027416146694,-99.11548629192666,19955,36.582310197945375,-0.9060171949665103,-198.8565442720884,99.4282721360442,-189.53031034036013 +461,0.5,3.8196116091269605,-98.09019419543652,15965,34.33761352959599,-1.0572231142876216,-197.1446177505008,98.5723088752504,-189.63471866708832 +681,0.5,3.6550565704691653,-98.17247171476542,12903,31.481050918391073,-0.9366330918759593,-201.2403079392376,100.62015396961881,-189.90819199297198 +581,0.5,1.64700346823136,-99.17649826588432,13988,32.327709465255936,-0.9076581049976229,-202.12747040135795,101.06373520067898,-190.919383686399 +401,20.5,6.083954392876169,-96.95802280356192,17153,19.413513671077943,-0.5543782546534547,-218.3235144727967,109.16175723639834,-190.93996764852204 +101,0.5,2.9344181713149435,-98.53279091434253,35484,40.70003381805884,-1.0207595955600905,-200.5343407319586,100.2671703659793,-190.99564235384705 +401,680.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,500.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,520.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,540.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,560.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,580.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,920.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,620.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,640.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,660.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,740.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,700.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,720.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,880.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,760.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,780.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,820.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,840.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,860.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,460.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,900.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,480.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,40.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,440.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,220.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,980.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,960.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,60.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,80.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,100.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,120.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,140.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,160.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,180.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,420.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,240.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,260.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,280.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,300.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,320.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,340.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,360.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,380.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,940.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +121,0.5,1.645196068399387,-99.1774019658003,32554,39.93057688763286,-1.0446362898321746,-199.73201619937916,99.86600809968958,-191.60584392353806 +721,0.5,2.0338685470952176,-98.9830657264524,12119,30.75336248865418,-1.0551988284426095,-200.72824919917474,100.36412459958737,-191.9367513474336 +241,0.5,1.5305911156208258,-99.23470444218958,21346,38.278834442050034,-1.0894664080623522,-199.57056632898355,99.78528316449177,-192.13652787053124 +401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248 +941,0.5,1.034194211632415,-99.4829028941838,9827,29.795461483667445,-1.0678019176396492,-200.29811569058936,100.14905784529469,-192.41577218209534 +961,0.5,1.5117252450780636,-99.24413737746097,9619,30.273417195134627,-0.9145217954891511,-206.15662715058446,103.07831357529223,-192.68104978356456 +201,980.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,960.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,940.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,920.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,900.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,880.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,860.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,840.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,820.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,780.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,760.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,740.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,720.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,700.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,340.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,300.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,280.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,260.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,240.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,220.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,180.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,140.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,120.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,100.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,80.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,60.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,40.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,680.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,20.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,320.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,160.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,360.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,520.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,380.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,640.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,620.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,560.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,540.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,580.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,500.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,480.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,460.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,440.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,420.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,660.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +321,0.5,1.4478510397485156,-99.27607448012574,18661,35.98949681153207,-1.201329095597594,-198.7617069785259,99.38085348926295,-193.1967064187072 +361,440.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,580.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,460.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,480.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,500.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,520.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,540.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,560.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,740.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,600.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,620.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,640.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,660.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,680.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,700.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,720.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,760.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,400.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,420.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,60.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,380.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,360.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,20.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,40.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,800.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,80.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,100.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,120.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,140.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,160.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,180.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,200.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,220.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,240.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,260.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,280.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,300.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,320.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,340.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,780.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,940.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,820.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,840.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,860.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,880.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,900.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,920.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,960.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,980.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +981,0.5,1.433810515211546,-99.28309474239423,9557,29.68504760908235,-0.882274531202573,-209.8941158764313,104.94705793821566,-193.82803546739763 +301,0.5,3.288758436016597,-98.3556207819917,18999,36.78614663929681,-0.9796482828217248,-210.34848032205863,105.17424016102932,-194.25079230467585 +201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145 +41,0.5,0.041447029234176626,-99.97927648538291,56284,40.84997512614598,-1.008221956112378,-205.78912685646796,102.89456342823398,-194.39359070131866 +821,0.5,12.390539014330974,-93.80473049283451,11087,31.072427166952288,-0.651802435386327,-232.63522444738894,116.31761222369448,-194.68044949642604 +481,20.5,1.663955284744091,-99.16802235762796,15685,19.266815428753585,-0.5855922907976959,-222.55784469437597,111.27892234718799,-195.21826772495072 +481,440.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,160.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,340.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,320.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,300.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,280.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,260.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,240.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,220.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,200.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,180.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,140.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,380.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,120.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,100.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,80.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,60.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,40.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,920.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,940.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,960.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,980.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,360.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,400.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,460.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,900.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,480.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,500.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,520.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,540.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,560.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,580.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,600.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,620.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,640.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,660.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,680.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,700.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,720.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,740.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,760.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,780.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,420.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,820.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,840.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,860.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,880.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,800.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +81,0.5,0.9655808324911037,-99.51720958375445,39553,41.26867747073547,-1.4449993489767177,-199.17747180830432,99.58873590415216,-196.52819049479677 +661,0.5,1.528484667289858,-99.23575766635507,13025,31.946257197696738,-0.7680161926809156,-220.4956959318078,110.2478479659039,-196.65023035124918 +61,0.5,0.7668170647576383,-99.61659146762118,45386,41.60754417661834,-1.4262290365337298,-199.8372311364892,99.9186155682446,-196.66623236062162 +41,20.5,0.017696144371817355,-99.99115192781409,58794,22.378133823179237,-0.7285582364048866,-220.38733166854774,110.19366583427387,-196.88878343209183 +41,700.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,260.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,440.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,420.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,400.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,380.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,360.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,340.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,320.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,300.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,280.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,240.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,720.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,220.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,200.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,180.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,160.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,140.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,120.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,100.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,80.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,640.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,460.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,480.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,500.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,40.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,740.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,760.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,780.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,800.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,820.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,840.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,860.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,620.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,900.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,920.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,940.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,960.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,980.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,680.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,600.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,580.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,560.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,540.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,520.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,880.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,660.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,60.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +621,0.5,9.603780250442313,-95.19810987477885,13298,32.741765679049486,-0.6903566197696623,-233.70867779395132,116.85433889697565,-196.96586042959532 +961,840.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,700.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,500.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,520.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,540.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,560.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,580.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,600.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,620.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,640.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,660.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,680.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,720.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,460.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,740.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,760.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,780.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,800.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,820.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,860.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,880.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,980.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,920.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,900.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,480.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,400.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,940.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,240.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,440.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,60.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,80.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,100.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,120.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,140.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,160.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,180.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,200.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,220.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,40.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,260.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,380.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,280.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,420.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,960.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,20.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,360.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,320.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,300.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,340.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +241,140.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,520.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,500.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,480.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,80.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,460.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,440.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,420.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,400.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,380.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,340.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,360.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,320.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,300.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,260.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,240.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,220.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,200.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,180.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,160.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,40.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,280.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,740.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,540.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,800.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,980.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,960.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,940.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,920.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,900.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,880.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,860.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,840.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,820.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,780.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,560.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,760.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,720.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,700.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,680.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,660.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,640.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,620.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,600.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,580.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,60.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,120.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,100.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,20.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +161,280.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,480.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,460.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,440.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,420.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,400.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,380.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,360.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,340.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,320.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,300.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,260.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,520.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,240.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,200.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,180.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,160.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,140.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,120.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,100.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,80.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,60.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,500.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,540.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,20.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,560.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,980.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,960.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,940.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,920.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,900.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,880.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,860.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,840.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,820.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,800.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,780.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,760.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,740.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,720.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,700.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,680.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,660.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,640.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,620.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,600.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,580.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,40.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,220.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,0.5,0.2685892319419987,-99.865705384029,27551,39.083880802874674,-1.342371861754411,-208.40151425694705,104.20075712847353,-199.33477342786074 +81,260.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,460.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,440.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,420.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,400.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,380.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,360.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,340.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,320.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,980.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,280.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,240.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,500.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,220.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,200.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,180.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,160.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,140.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,120.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,100.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,80.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,60.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,40.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,480.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,300.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,520.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,960.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,940.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,920.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,900.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,880.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,860.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,840.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,820.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,20.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,800.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,780.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,760.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,740.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,720.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,700.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,680.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,660.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,640.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,620.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,600.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,580.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,560.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,540.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +181,0.5,0.9753992694227842,-99.51230036528861,25705,38.87570511573624,-0.9773350993114092,-221.07516321775063,110.53758160887533,-199.6703868441258 +441,20.5,7.596689357360179,-96.2016553213199,16385,19.456820262435155,-0.5557032467011732,-242.31918008929435,121.15959004464717,-199.79776631745173 +441,200.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,40.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,60.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,80.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,100.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,120.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,140.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,160.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,180.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,420.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,400.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,240.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,260.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,280.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,300.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,320.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,340.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,360.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,380.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,220.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,940.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,800.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,700.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,440.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,980.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,960.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,920.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,900.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,880.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,860.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,840.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,820.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,780.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,760.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,720.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,740.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,680.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,580.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,460.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,480.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,500.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,520.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,560.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,540.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,600.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,620.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,640.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,660.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +461,20.5,4.434004284444087,-97.78299785777796,15985,19.411948701908038,-0.8755121473805093,-229.11962312436742,114.55981156218371,-199.93699287609104 +461,500.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,560.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,580.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,540.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,520.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,980.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,480.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,460.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,440.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,620.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,600.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,840.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,640.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,660.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,680.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,700.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,720.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,740.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,760.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,780.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,800.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,820.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,900.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,420.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,880.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,920.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,200.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,400.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,380.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,360.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,340.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,300.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,280.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,260.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,240.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,220.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,320.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,180.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,80.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,160.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,860.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,40.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,60.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,940.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,120.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,140.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,960.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,100.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +981,720.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,820.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,740.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,760.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,780.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,800.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,880.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,840.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,860.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,900.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,920.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,960.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,940.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,680.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,700.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,180.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,300.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,280.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,260.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,240.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,220.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,200.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,140.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,660.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,120.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,100.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,80.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,60.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,40.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,20.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,320.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,340.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,360.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,380.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,400.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,420.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,440.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,460.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,480.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,500.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,520.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,540.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,560.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,580.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,600.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,620.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,640.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,160.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,980.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +761,0.5,34.15657568886656,-82.92171215556672,11632,31.542297111416783,-0.5954295868873956,-275.94605520118887,137.97302760059443,-200.44528927869104 +1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,760.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,560.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,580.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,620.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,640.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,660.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,680.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,700.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,720.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,740.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,780.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,520.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,820.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,840.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,860.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,880.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,900.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,920.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,940.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,980.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,20.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,540.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,960.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,240.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,480.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,60.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,80.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,40.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,100.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,120.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,140.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,180.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,220.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,160.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,260.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,440.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,300.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,320.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,460.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,340.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,360.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,380.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,420.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,280.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +221,700.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,680.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,660.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,560.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,640.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,620.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,600.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,580.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,740.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,720.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,980.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,760.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,780.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,800.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,820.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,840.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,860.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,880.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,900.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,920.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,960.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,520.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,540.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,320.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,500.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,480.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,20.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,60.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,80.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,100.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,120.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,140.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,160.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,180.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,200.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,220.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,240.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,260.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,280.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,300.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,340.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,360.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,380.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,400.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,420.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,440.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,460.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,40.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,940.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +641,0.5,7.108859136176257,-96.44557043191188,13224,32.07803992740472,-0.7583607071098977,-249.16885794340766,124.58442897170383,-205.21344209459372 +121,320.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,760.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,720.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,700.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,680.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,660.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,640.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,620.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,600.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,580.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,560.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,540.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,520.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,500.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,480.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,460.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,440.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,400.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,380.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,80.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,60.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,300.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,40.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,20.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,740.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,420.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,780.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,120.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,800.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,340.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,360.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,280.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,240.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,220.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,200.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,180.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,160.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,140.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,260.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,100.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,920.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,820.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,840.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,880.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,900.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,860.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,940.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,960.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,980.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773 +141,0.5,0.9920270759077073,-99.50398646204614,29749,39.53746344414938,-1.0602682514390935,-236.9191197367836,118.4595598683918,-206.9948533740287 +501,580.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,600.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,460.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,560.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,540.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,520.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,480.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,360.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,420.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,400.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,380.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,340.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,320.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,300.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,640.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,280.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,620.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,860.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,660.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,680.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,240.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,980.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,960.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,940.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,920.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,900.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,880.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,840.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,820.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,800.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,780.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,760.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,740.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,720.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,700.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,260.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,440.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,220.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,20.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,180.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,160.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,140.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,120.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,100.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,80.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,60.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,200.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,40.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +21,0.5,0.010965024904747085,-99.99451748754763,79775,39.711689125665934,-1.2141873143847706,-242.21317158288628,121.10658579144314,-211.4500338933194 +561,100.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,340.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,300.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,480.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,260.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,240.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,220.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,200.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,180.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,160.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,140.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,120.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,660.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,80.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,60.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,40.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,20.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,680.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,600.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,580.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,560.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,540.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,520.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,500.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,760.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,740.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,720.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,700.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,440.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,320.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,280.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,360.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,880.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,640.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,620.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,380.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,980.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,960.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,940.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,920.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,900.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,460.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,860.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,820.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,800.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,780.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,400.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,420.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,840.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +101,460.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,580.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,560.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,540.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,520.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,500.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,480.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,400.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,440.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,420.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,240.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,260.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,280.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,300.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,380.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,340.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,360.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,320.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,200.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,980.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,960.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,160.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,140.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,120.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,100.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,80.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,60.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,40.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,20.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,640.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,660.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,680.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,700.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,220.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,720.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,180.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,760.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,780.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,800.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,820.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,840.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,860.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,880.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,900.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,920.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,940.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,740.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,600.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,620.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +581,60.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,260.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,460.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,440.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,420.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,400.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,380.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,360.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,340.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,320.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,300.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,280.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,240.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,520.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,220.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,200.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,180.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,160.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,140.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,120.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,100.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,80.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,40.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,480.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,500.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,780.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,540.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,980.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,960.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,940.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,920.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,900.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,880.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,860.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,840.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,820.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,800.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,20.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,760.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,740.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,720.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,700.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,680.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,660.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,640.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,620.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,600.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,580.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,560.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +21,20.5,0.00043289925579133006,-99.9997835503721,84947,23.957291016751622,-0.5120799202809959,-295.06366646494337,147.53183323247168,-224.1702091797214 +521,960.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,980.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,560.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,600.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,540.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,520.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,500.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,480.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,460.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,440.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,420.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,400.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,380.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,360.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,340.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,320.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,300.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,280.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,260.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,580.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,620.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,220.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,640.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,940.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,920.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,900.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,880.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,860.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,840.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,820.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,800.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,780.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,760.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,740.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,720.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,700.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,680.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,660.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,240.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,60.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,200.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,160.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,140.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,120.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,100.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,80.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,40.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,20.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,180.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +141,640.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,720.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,700.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,680.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,660.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,120.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,620.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,600.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,580.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,760.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,740.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,840.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,780.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,800.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,820.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,180.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,860.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,880.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,900.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,920.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,940.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,960.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,980.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,160.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,140.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,200.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,420.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,20.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,40.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,560.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,540.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,520.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,220.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,480.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,100.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,460.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,440.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,500.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,400.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,300.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,60.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,240.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,260.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,280.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,80.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,340.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,360.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,380.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,320.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +181,280.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,140.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,220.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,200.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,180.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,160.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,80.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,120.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,100.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,60.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,40.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,300.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,20.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,920.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,240.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,640.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,680.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,700.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,720.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,740.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,760.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,780.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,800.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,820.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,860.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,880.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,900.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,260.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,940.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,960.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,980.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,660.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,840.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,620.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,440.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,600.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,320.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,340.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,360.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,400.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,420.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,380.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,460.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,480.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,500.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,520.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,540.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,560.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,580.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +21,360.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,280.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,300.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,960.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,340.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,400.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,380.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,440.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,420.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,240.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,260.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,80.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,220.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,200.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,180.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,160.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,140.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,120.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,100.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,60.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,40.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,480.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,460.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,980.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,500.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,760.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,520.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,940.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,920.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,900.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,880.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,860.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,840.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,820.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,800.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,780.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,320.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,740.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,700.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,680.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,660.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,640.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,620.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,600.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,580.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,560.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,540.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,720.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +341,640.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,700.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,680.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,660.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,560.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,620.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,600.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,580.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,740.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,720.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,840.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,760.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,780.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,800.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,820.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,520.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,860.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,880.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,900.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,920.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,940.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,960.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,980.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,540.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,440.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,500.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,220.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,20.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,40.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,60.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,80.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,100.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,120.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,140.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,160.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,180.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,480.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,200.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,240.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,260.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,280.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,320.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,340.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,360.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,380.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,400.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,420.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,460.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,300.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +421,20.5,27.208149055396262,-86.39592547230187,16723,19.571847156610655,-0.20810486720210958,-390.496944603848,195.248472301924,-245.0919617202664 +421,480.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,460.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,800.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,980.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,420.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,400.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,380.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,360.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,340.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,320.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,300.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,280.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,260.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,240.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,220.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,200.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,180.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,160.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,140.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,120.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,100.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,80.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,60.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,440.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,960.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,740.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,940.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,700.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,680.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,660.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,640.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,620.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,600.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,580.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,560.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,540.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,520.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,500.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,760.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,780.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,820.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,840.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,860.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,880.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,900.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,920.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,40.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,720.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +741,920.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,260.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,420.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,400.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,380.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,360.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,340.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,320.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,240.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,300.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,280.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,20.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,460.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,40.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,60.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,80.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,100.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,120.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,140.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,160.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,180.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,200.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,440.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,480.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,960.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,720.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,900.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,880.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,860.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,840.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,820.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,800.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,780.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,760.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,740.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,700.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,500.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,680.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,660.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,640.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,620.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,600.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,580.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,560.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,540.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,520.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,940.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,220.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,980.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +661,360.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,980.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,840.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,860.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,880.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,900.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,920.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,940.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,960.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,380.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,820.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,20.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,40.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,80.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,100.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,120.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,140.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,160.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,420.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,800.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,200.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,780.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,440.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,460.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,480.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,500.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,520.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,540.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,560.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,580.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,600.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,620.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,640.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,660.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,680.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,700.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,720.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,740.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,760.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,180.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,60.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,220.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,320.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,340.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,240.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,400.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,300.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,280.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,260.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +861,540.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,580.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,600.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,620.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,640.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,660.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,680.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,700.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,720.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,740.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,760.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,780.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,800.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,820.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,840.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,860.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,880.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,900.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,920.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,940.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,960.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,980.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,560.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,520.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,340.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,500.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,360.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,380.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,400.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,320.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,300.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,280.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,260.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,240.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,220.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,200.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,180.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,160.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,140.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,120.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,100.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,80.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,60.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,40.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,420.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,440.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,460.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,480.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,20.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +601,500.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,60.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,460.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,440.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,420.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,380.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,360.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,40.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,20.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,340.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,320.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,300.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,280.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,260.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,240.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,220.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,180.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,160.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,140.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,120.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,100.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,480.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,520.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,540.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,780.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,980.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,960.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,940.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,920.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,900.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,880.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,860.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,840.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,820.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,760.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,740.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,720.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,700.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,680.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,660.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,640.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,620.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,580.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,560.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,80.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +641,320.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,300.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,20.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,780.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,740.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,720.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,700.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,680.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,660.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,640.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,620.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,600.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,580.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,560.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,540.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,520.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,480.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,460.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,440.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,420.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,400.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,380.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,360.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,340.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,40.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,760.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,500.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,800.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,260.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,820.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,80.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,100.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,120.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,140.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,160.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,180.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,200.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,220.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,240.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,60.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,280.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,980.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,960.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,940.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,920.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,900.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,880.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,860.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,840.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +681,340.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,280.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,300.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,320.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,420.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,360.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,380.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,400.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,240.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,440.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,260.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,160.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,220.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,200.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,180.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,20.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,140.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,120.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,100.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,80.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,60.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,480.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,40.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,460.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,700.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,500.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,520.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,980.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,960.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,920.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,900.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,880.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,860.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,840.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,820.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,800.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,780.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,760.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,740.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,720.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,680.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,660.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,640.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,620.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,600.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,580.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,560.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,540.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,940.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +701,720.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,300.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,100.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,580.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,560.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,540.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,520.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,500.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,480.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,460.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,440.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,20.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,40.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,60.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,80.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,120.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,400.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,140.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,160.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,180.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,200.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,220.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,240.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,260.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,280.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,420.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,320.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,340.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,360.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,600.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,620.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,640.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,840.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,980.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,960.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,940.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,660.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,900.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,880.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,860.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,920.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,820.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,700.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,800.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,680.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,380.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,740.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,760.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,780.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +881,800.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,820.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,860.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,880.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,900.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,920.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,100.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,940.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,960.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,840.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,80.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,320.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,220.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,360.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,340.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,780.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,300.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,280.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,260.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,240.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,200.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,400.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,180.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,160.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,140.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,120.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,20.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,40.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,60.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,380.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,980.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,420.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,620.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,760.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,740.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,720.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,440.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,680.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,660.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,640.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,700.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,600.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,560.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,540.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,520.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,460.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,480.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,500.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,580.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +801,20.5,119.48398328654407,-40.25800835672796,11418,19.451742862147487,-0.04011453242523123,-1079.663460021157,539.8317300105786,-472.60476675429356 +801,140.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,180.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,160.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,80.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,120.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,100.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,60.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,40.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,240.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,220.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,640.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,820.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,680.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,700.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,720.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,740.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,760.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,780.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,840.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,860.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,880.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,900.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,920.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,940.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,960.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,980.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,660.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,620.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,420.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,260.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,280.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,300.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,320.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,340.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,360.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,380.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,440.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,460.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,480.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,500.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,520.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,540.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,560.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,580.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +901,960.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,980.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,580.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,560.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,940.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,920.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,900.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,360.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,200.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,220.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,240.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,260.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,280.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,300.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,320.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,340.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,380.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,880.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,400.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,420.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,440.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,460.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,480.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,500.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,520.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,540.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,180.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,160.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,140.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,120.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,860.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,840.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,820.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,780.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,760.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,740.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,720.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,700.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,680.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,660.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,640.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,620.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,20.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,40.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,60.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,80.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,600.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,800.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,100.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +841,440.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,460.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,500.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,520.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,540.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,560.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,580.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,600.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,620.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,640.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,680.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,700.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,720.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,740.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,760.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,780.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,800.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,820.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,840.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,860.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,880.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,480.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,420.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,920.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,400.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,20.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,40.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,60.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,80.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,100.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,120.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,140.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,160.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,180.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,200.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,220.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,240.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,260.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,280.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,300.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,320.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,340.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,360.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,380.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,900.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,660.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,940.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,960.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,980.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +261,940.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,720.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,740.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,760.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,780.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,800.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,200.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,840.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,860.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,880.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,900.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,920.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,960.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,680.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,980.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,180.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,160.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,140.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,120.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,100.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,80.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,60.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,40.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,20.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,700.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,820.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,660.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,420.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,220.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,240.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,260.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,640.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,300.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,320.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,340.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,360.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,380.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,400.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,280.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,440.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,480.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,500.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,520.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,540.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,560.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,580.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,600.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,620.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,460.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +621,500.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,440.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,460.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,480.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,540.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,520.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,400.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,560.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,580.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,420.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,300.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,380.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,360.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,340.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,320.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,280.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,260.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,20.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,60.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,620.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,600.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,160.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,640.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,860.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,220.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,100.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,980.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,960.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,940.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,920.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,900.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,880.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,840.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,660.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,820.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,800.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,780.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,760.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,740.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,720.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,700.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,680.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,80.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,40.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,120.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,200.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,140.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,180.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,240.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +781,20.5,428.5181027198938,114.25905135994692,11560,19.429065743944637,0.05284365276672228,-2407.212312756382,1203.606156378191,-847.9917499094051 +781,820.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,920.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,340.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,840.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,860.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,880.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,900.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,980.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,940.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,960.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,780.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,320.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,300.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,280.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,800.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,760.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,360.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,740.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,400.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,420.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,440.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,460.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,480.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,500.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,520.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,540.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,560.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,580.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,600.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,620.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,640.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,660.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,680.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,700.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,720.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,260.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,380.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,60.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,180.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,40.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,80.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,100.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,120.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,140.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,160.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,200.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,220.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,240.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +821,140.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,240.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,260.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,280.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,220.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,200.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,180.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,160.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,600.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,120.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,100.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,80.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,620.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,60.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,40.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,20.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,300.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,320.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,340.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,880.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,640.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,660.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,680.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,720.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,580.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,760.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,780.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,800.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,820.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,840.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,860.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,900.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,360.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,920.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,560.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,540.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,520.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,500.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,480.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,460.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,440.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,420.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,400.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,380.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,740.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,700.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,980.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,940.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,960.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +921,720.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,520.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,540.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,560.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,580.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,600.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,620.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,640.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,660.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,680.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,700.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,980.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,740.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,500.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,780.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,800.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,820.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,840.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,860.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,880.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,900.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,920.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,940.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,760.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,460.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,480.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,440.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,20.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,40.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,60.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,80.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,100.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,120.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,140.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,160.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,180.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,200.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,220.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,240.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,260.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,280.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,300.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,320.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,340.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,360.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,380.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,400.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,420.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,960.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 diff --git a/strategy/results/bb_full_grid_5m_20260227_115332.csv b/strategy/results/bb_full_grid_5m_20260227_115332.csv new file mode 100644 index 0000000..344d591 --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260227_115332.csv @@ -0,0 +1,2501 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +801,0.5,181.43296931677935,-9.283515341610325,4050,30.0,-0.09570947529404288,-101.50183051832926,50.75091525916463,-51.03276125247054 +461,0.5,177.69443924422694,-11.152780377886529,5295,33.22001888574127,-0.10479579689032263,-174.96771966294483,87.48385983147242,-82.39741780574835 +821,0.5,157.77236627932015,-21.113816860339924,3869,30.007753941586973,-0.19428091952081786,-183.5002673141616,91.7501336570808,-96.84529482025438 +361,620.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,700.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,480.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,500.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,520.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,540.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,560.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,580.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,600.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,980.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,640.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,660.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,680.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,740.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,720.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,440.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,760.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,780.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,800.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,820.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,840.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,960.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,860.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,880.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,900.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,460.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,420.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,940.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,200.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,20.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,40.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,60.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,80.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,100.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,120.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,140.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,400.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,180.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,160.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,220.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,240.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,260.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,280.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,300.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,320.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,340.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,360.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,380.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +361,920.5,172.4176585071205,-13.791170746439747,6049,17.540089270953878,-0.06593349439299669,-224.75080105760082,112.37540052880041,-104.48269310219605 +961,0.5,113.10609205224827,-43.446953973875864,3397,29.055048572269648,-0.5357509543226425,-150.61325481602853,75.30662740801426,-110.12126735215898 +541,0.5,183.0572686899154,-8.471365655042305,4904,32.5652528548124,-0.0643738393961504,-252.44480196362633,126.22240098181317,-110.22177251324665 +781,0.5,154.98378148043355,-22.508109259783225,4135,29.57678355501814,-0.19423303118061738,-233.71700879794224,116.85850439897112,-118.32570915312753 +301,0.5,86.97293658962803,-56.51353170518598,6517,34.540432714439156,-0.9145065707502511,-131.7759281549882,65.8879640774941,-120.19798181618427 +921,0.5,121.32309730006378,-39.33845134996811,3464,30.94688221709007,-0.4350529959305473,-193.628533384783,96.8142666923915,-122.01050065504789 +581,0.5,196.86797870511683,-1.5660106474415867,4799,31.673265263596583,-0.010802133466765921,-309.125862276303,154.5629311381515,-125.34598115956398 +901,0.5,139.22944762637624,-30.385276186811875,3594,30.60656649972176,-0.30104718553320425,-230.95779249907997,115.47889624953997,-126.38095941284232 +361,0.5,91.58624916779772,-54.20687541610114,6027,34.494773519163765,-0.8220285756045653,-160.61223030082198,80.30611515041099,-128.31611044368472 +341,0.5,81.0261195183233,-59.48694024083835,6136,34.240547588005214,-1.0258184533106602,-145.1722125495864,72.5861062747932,-129.86564670040084 +501,0.5,71.68125283535919,-64.1593735823204,5070,32.662721893491124,-0.9592933891111373,-140.70037664733087,70.35018832366544,-131.9510449105864 +941,0.5,84.03317380369877,-57.98341309815061,3431,29.087729524919848,-0.9690517324775167,-163.8145230442235,81.90726152211175,-135.1378431055702 +981,0.5,81.02706191918345,-59.486469040408274,3353,29.018789144050107,-0.8161519964019833,-165.60416349996314,82.80208174998157,-135.5219583972173 +561,0.5,174.50124453669858,-12.74937773165071,4782,31.994981179422837,-0.10199019095833096,-309.1576442441152,154.5788221220576,-137.63631772079677 +761,0.5,126.36338821960767,-36.818305890196164,4047,30.343464294539164,-0.36260053710102097,-241.8393266754421,120.91966333772103,-137.90524300558525 +601,0.5,93.62899070862777,-53.18550464568612,4692,31.60699062233589,-0.5815001553833595,-197.11225415652723,98.55612707826361,-139.00840817289733 +221,0.5,91.47884133360425,-54.26057933319788,7849,35.380303223340555,-0.6974900745582211,-193.13864841877415,96.56932420938708,-139.88591959540622 +321,0.5,70.09601400095231,-64.95199299952384,6371,34.01349866582954,-1.0855429638938559,-158.8273006534033,79.41365032670166,-141.50942882761143 +841,0.5,141.96273482167754,-29.018632589161232,3854,30.020757654385054,-0.2570099570633772,-278.6614381935489,139.33071909677446,-143.56732735134133 +861,0.5,73.57356690967951,-63.21321654516024,3775,30.33112582781457,-0.7427053991545528,-190.7928465364056,95.3964232682028,-148.4428199495771 +401,0.5,62.32779858408545,-68.83610070795727,5759,33.79058864386178,-1.4213594190051202,-161.96245274664543,80.98122637332271,-150.67739483467687 +521,0.5,60.6658600500362,-69.6670699749819,5075,31.862068965517242,-0.9682416369711211,-175.84672700383067,87.92336350191533,-151.62466042016763 +241,0.5,59.59773417688532,-70.20113291155734,7442,35.03090567051868,-1.035433004694139,-174.10748159799783,87.05374079899892,-152.26932160708614 +441,0.5,80.30894169691625,-59.845529151541875,5500,33.67272727272727,-0.698228902925261,-218.52545494661706,109.26272747330854,-155.63445796529186 +621,0.5,80.04630720445829,-59.976846397770856,4607,31.60408074668982,-0.7742143166888015,-216.36107689265532,108.18053844632767,-155.8118489550986 +101,0.5,57.46076180819589,-71.26961909590206,12407,37.833481099379384,-1.161983233479241,-176.76132059574527,88.38066029787264,-155.91794613595107 +481,0.5,58.20889584596082,-70.89555207701959,5121,32.845147432142156,-1.115779797373908,-179.32763196196558,89.66381598098279,-156.01596243029272 +121,0.5,69.61779655095876,-65.19110172452062,11551,36.94052462990217,-0.8023943612347219,-204.89704521469628,102.44852260734814,-156.7786521452158 +201,0.5,89.02955479967403,-55.485222600162984,8469,35.48234738457906,-0.5773758988733515,-241.43620122699747,120.71810061349872,-158.98821387744218 +881,0.5,105.9099415569152,-47.0450292215424,3667,30.05181347150259,-0.4880373897875945,-267.68499781230975,133.84249890615487,-159.97547702391745 +941,580.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,600.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,620.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,640.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,660.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,680.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,700.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,720.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,740.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,760.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,780.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,480.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,560.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,820.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,840.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,860.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,880.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,900.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,920.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,940.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,960.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,980.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,460.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,800.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,180.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,540.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,220.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,520.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,420.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,400.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,380.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,360.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,340.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,320.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,300.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,280.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,260.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,240.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,440.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,200.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,120.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,40.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,60.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,80.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,100.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,20.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,140.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,160.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +941,500.5,114.53530492696727,-42.732347536516365,3442,16.676350958744916,-0.2700866314327888,-287.5528161104697,143.77640805523484,-160.9945135578977 +281,0.5,50.416695539070886,-74.79165223046456,6849,34.764199153161044,-1.216313219309058,-179.95426232032744,89.97713116016372,-161.36911579030425 +421,0.5,51.00848824907272,-74.49575587546364,5503,33.89060512447756,-1.1879592102967673,-185.64675964988166,92.82337982494083,-163.00997025897752 +381,0.5,71.14433005257273,-64.42783497371363,5888,33.797554347826086,-0.8918577782114215,-227.04981082330417,113.52490541165207,-165.95005264157237 +261,0.5,93.59373511603448,-53.20313244198276,7181,34.46595181729564,-0.6293265820679378,-263.8456823021226,131.9228411510613,-166.29332434764706 +81,0.5,43.520233784077476,-78.23988310796126,13532,38.26485368016554,-1.262413584937786,-187.32164339344055,93.66082169672028,-168.31750348459093 +61,0.5,35.66105619252504,-82.16947190373747,15491,38.319023949389965,-1.5686420102684286,-169.39387549868732,84.69693774934366,-168.75072622643356 +721,0.5,55.995277709244036,-72.00236114537799,4226,29.17652626597255,-1.0844686919736206,-209.91234094032035,104.95617047016017,-168.98092182518957 +981,600.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,760.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,620.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,640.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,660.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,680.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,700.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,720.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,740.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,900.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,780.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,800.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,820.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,840.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,860.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,880.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,920.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,940.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,960.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,560.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,580.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,300.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,540.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,520.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,40.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,60.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,80.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,100.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,120.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,140.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,160.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,180.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,200.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,220.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,240.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,260.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,280.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,320.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,340.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,360.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,380.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,400.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,420.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,440.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,460.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,480.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,500.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,20.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +981,980.5,93.7338724038532,-53.1330637980734,3360,16.99404761904762,-0.317000141825729,-281.1521758686031,140.57608793430154,-169.39793584742338 +141,0.5,52.60026010759978,-73.69986994620011,10524,36.45952109464082,-1.0084925813844843,-209.56948561680653,104.78474280840327,-169.62957516953654 +181,0.5,35.42718985726491,-82.28640507136754,9060,35.4635761589404,-1.4907883607915018,-174.64833046883268,87.32416523441634,-170.03519758839863 +461,20.5,276.1615792014358,38.08078960071791,5310,17.04331450094162,0.10432079996939808,-538.5475311317269,269.27376556586347,-176.0863732523401 +641,0.5,60.88852919317262,-69.55573540341369,4526,31.48475475033142,-0.9274797271400017,-239.2011231291925,119.60056156459625,-176.36594138077072 +461,600.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,460.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,480.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,500.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,520.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,920.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,540.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,560.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,580.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,640.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,620.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,420.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,660.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,680.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,700.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,720.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,740.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,780.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,440.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,400.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,820.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,380.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,40.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,60.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,80.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,100.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,120.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,140.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,160.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,180.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,200.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,220.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,240.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,260.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,280.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,300.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,320.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,340.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,360.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,800.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,940.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,760.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,960.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,980.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,900.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,880.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,860.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +461,840.5,275.5126236908078,37.7563118454039,5310,17.04331450094162,0.10344583681093471,-538.5475311317269,269.27376556586347,-176.42135056555568 +81,640.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,260.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,280.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,300.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,380.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,320.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,340.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,360.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,220.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,240.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,140.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,200.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,180.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,160.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,420.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,120.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,100.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,80.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,60.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,40.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,20.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,400.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,620.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,440.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,760.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,540.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,460.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,600.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,980.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,960.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,940.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,920.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,900.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,880.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,860.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,840.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,820.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,800.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,780.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,740.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,580.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,520.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,720.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,700.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,680.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,660.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,500.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,480.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +81,560.5,32.12954672586478,-83.93522663706761,13947,19.574101957410196,-0.8428531811205731,-210.42860185085215,105.21430092542607,-178.22090555085538 +741,0.5,75.25221284370917,-62.37389357814541,4153,30.363592583674453,-0.7507578251449403,-271.5600458599501,135.78002292997505,-180.00700582386474 +61,740.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,560.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,540.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,520.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,500.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,640.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,620.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,600.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,20.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,580.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,480.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,460.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,440.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,420.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,400.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,380.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,360.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,340.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,320.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,300.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,260.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,240.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,220.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,200.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,180.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,160.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,140.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,120.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,100.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,80.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,60.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,40.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,280.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,720.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,980.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,660.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,860.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,700.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,680.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,820.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,800.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,880.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,840.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,960.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,760.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,920.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,780.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,900.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +61,940.5,12.697706635686064,-93.65114668215696,16014,20.03247158736106,-1.1921998780434098,-192.7837964027622,96.3918982013811,-185.07106377978278 +161,0.5,27.98538006780853,-86.00730996609573,9852,35.952090946000816,-1.7389945497609085,-199.1770247730931,99.58851238654655,-186.54605447246388 +281,740.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,580.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,600.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,620.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,640.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,660.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,680.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,700.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,720.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,780.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,760.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,540.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,800.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,820.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,840.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,860.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,880.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,900.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,920.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,940.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,980.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,560.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,500.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,520.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,240.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,40.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,60.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,80.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,100.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,120.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,140.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,160.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,180.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,200.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,220.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,260.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,20.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,280.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,300.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,320.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,340.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,360.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,380.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,400.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,440.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,460.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,480.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,420.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +281,960.5,115.8289907505518,-42.0855046247241,6900,17.942028985507246,-0.19796232447474024,-356.06962973541386,178.03481486770693,-186.88890441258653 +401,20.5,44.9547509225448,-77.5226245387276,5793,17.262213015708614,-0.6968257890210412,-253.93642559214132,126.96821279607067,-187.45910424383663 +401,800.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,500.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,380.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,400.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,420.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,440.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,460.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,480.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,520.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,340.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,540.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,980.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,960.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,940.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,920.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,900.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,780.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,320.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,860.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,300.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,280.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,260.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,240.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,220.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,200.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,180.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,160.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,140.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,120.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,100.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,80.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,60.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,40.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,880.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,360.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,840.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,640.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,760.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,740.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,720.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,700.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,660.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,680.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,620.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,600.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,580.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,560.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +401,820.5,44.38579511338957,-77.80710244330521,5793,17.262213015708614,-0.6994195729006223,-253.93642559214132,126.96821279607067,-187.7747075549692 +661,0.5,55.738465096609964,-72.13076745169502,4458,31.20233288470166,-0.8012294219902308,-268.4374207437708,134.2187103718854,-189.12048881308613 +501,580.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,460.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,500.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,520.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,540.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,560.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,440.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,20.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,800.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,900.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,880.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,860.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,960.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,980.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,840.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,820.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,780.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,620.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,760.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,740.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,720.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,700.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,680.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,660.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,640.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,600.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,940.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,40.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,280.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,60.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,300.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,320.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,340.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,380.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,920.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,400.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,420.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,480.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,360.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,260.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,140.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,80.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,240.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,120.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,100.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,160.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,180.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,200.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +501,220.5,52.37675274040013,-73.81162362979994,5086,17.322060558395595,-0.5590998284180034,-272.64100514932204,136.32050257466102,-189.5772236305448 +801,20.5,220.3138521317078,10.156926065853895,4053,17.66592647421663,0.036294609373378243,-506.2632850511136,253.1316425255568,-191.912852642111 +801,900.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,760.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,780.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,800.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,820.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,840.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,860.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,880.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,940.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,920.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,40.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,960.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,980.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,100.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,80.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,60.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,720.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,740.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,220.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,700.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,120.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,660.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,680.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,620.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,600.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,580.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,560.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,540.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,520.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,500.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,480.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,460.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,440.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,420.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,400.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,380.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,360.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,340.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,320.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,300.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,280.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,260.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,240.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,200.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,180.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,140.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,640.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +801,160.5,218.96542562281235,9.482712811406174,4053,17.66592647421663,0.03389213813921764,-506.2632850511136,253.1316425255568,-192.61589555136865 +101,840.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,660.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,700.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,720.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,740.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,760.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,780.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,260.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,240.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,220.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,200.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,180.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,160.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,140.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,120.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,100.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,80.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,680.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,640.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,860.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,620.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,320.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,340.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,360.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,380.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,400.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,420.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,440.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,460.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,480.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,500.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,520.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,540.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,560.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,580.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,600.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,800.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,300.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,60.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,960.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,40.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,20.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,980.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,820.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,280.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,940.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,920.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,900.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +101,880.5,24.64306841402318,-87.6784657929884,12659,18.721857966664032,-0.9223493186372588,-244.8877877903692,122.4438938951846,-196.70177273278318 +41,0.5,11.555275865284212,-94.22236206735789,19052,37.355658198614314,-1.8261823643371522,-204.09688880115954,102.04844440057977,-197.77530595986752 +481,20.5,46.73668371471881,-76.63165814264059,5134,16.71211530970004,-0.5101258941920622,-298.6958664834341,149.34793324171704,-202.23151546631897 +481,840.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,40.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,640.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,740.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,760.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,780.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,800.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,820.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,660.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,860.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,880.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,900.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,920.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,940.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,80.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,960.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,980.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,60.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,340.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,100.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,360.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,620.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,600.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,580.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,560.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,540.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,520.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,500.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,480.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,460.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,120.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,420.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,400.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,380.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,440.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,680.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,200.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,720.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,700.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,140.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,320.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,180.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,160.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,220.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,240.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,260.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,280.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +481,300.5,46.626669830832604,-76.6866650845837,5134,16.71211530970004,-0.5105048480985619,-298.6958664834341,149.34793324171704,-202.29106985514008 +41,200.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,220.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,240.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,260.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,280.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,300.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,320.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,340.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,360.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,520.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,980.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,780.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,740.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,720.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,700.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,680.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,660.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,640.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,620.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,580.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,560.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,540.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,500.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,480.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,460.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,440.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,960.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,380.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,400.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,760.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,600.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,160.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,120.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,920.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,940.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,880.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,860.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,180.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,420.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,140.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,900.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,80.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,60.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,40.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,20.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,100.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,840.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,820.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +41,800.5,4.443904851185997,-97.778047574407,19889,20.418321685353714,-1.0386554204463117,-233.6719518524218,116.8359759262109,-203.71069336073145 +21,0.5,8.636362302292065,-95.68181884885396,26805,35.53441522104085,-2.281699906483049,-202.55046390941223,101.27523195470611,-204.08240329041547 +701,0.5,31.360886749626296,-84.31955662518685,4367,29.700022899015345,-1.217589266726586,-268.63719981000463,134.31859990500232,-206.38550774990773 +681,0.5,36.114323721975914,-81.94283813901204,4546,29.938407391113063,-1.0045140129076586,-281.7641920160589,140.88209600802946,-206.70268310032753 +161,580.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,620.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,600.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,500.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,560.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,520.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,640.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,540.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,800.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,660.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,680.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,700.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,720.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,740.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,760.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,780.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,820.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,840.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,860.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,460.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,480.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,120.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,440.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,420.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,20.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,40.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,60.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,80.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,100.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,900.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,140.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,160.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,180.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,200.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,220.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,240.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,260.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,300.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,320.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,340.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,360.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,380.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,400.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,880.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,280.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,920.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,960.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,980.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +161,940.5,26.41592333398353,-86.79203833300824,10004,18.122750899640145,-0.7351605908373352,-283.09508390289,141.547541951445,-208.85199898421226 +321,280.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,480.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,460.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,440.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,420.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,400.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,380.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,360.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,340.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,320.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,300.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,240.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,260.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,520.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,220.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,200.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,180.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,160.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,140.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,120.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,80.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,60.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,500.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,540.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,20.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,560.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,980.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,960.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,940.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,920.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,900.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,880.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,860.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,840.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,820.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,800.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,780.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,760.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,740.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,720.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,700.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,680.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,660.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,640.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,620.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,600.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,580.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,40.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +321,100.5,237.42606142187222,18.71303071093611,6395,18.18608287724785,0.06199510356436978,-582.7063523080502,291.3531761540251,-213.62556896951156 +121,440.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,300.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,80.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,120.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,140.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,160.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,180.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,200.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,220.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,240.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,260.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,280.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,320.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,40.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,340.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,360.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,900.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,380.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,920.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,940.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,960.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,980.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,420.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,400.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,60.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,100.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,20.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,700.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,480.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,500.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,520.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,540.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,560.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,580.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,600.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,620.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,460.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,660.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,680.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,640.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,720.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,760.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,780.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,800.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,820.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,840.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,860.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,880.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +121,740.5,27.625368863453158,-86.18731556827342,11739,18.025385467245933,-0.5643990779885792,-308.18480257441,154.092401287205,-216.23402553390036 +421,20.5,27.73790872526935,-86.13104563736533,5532,17.606652205350688,-0.5751328088203148,-308.75214800946907,154.37607400473453,-216.53349854699673 +421,600.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,640.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,620.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,680.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,580.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,500.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,520.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,660.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,160.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,700.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,120.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,480.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,460.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,440.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,420.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,400.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,380.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,360.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,340.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,320.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,300.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,280.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,260.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,240.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,220.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,200.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,140.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,100.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,720.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,80.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,740.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,760.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,780.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,800.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,820.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,840.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,860.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,880.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,180.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,920.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,940.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,960.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,980.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,40.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,60.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,900.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,540.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +421,560.5,27.490135953729197,-86.2549320231354,5532,17.606652205350688,-0.5759665524751504,-308.9893972397627,154.49469861988135,-216.76228954874227 +761,560.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,780.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,580.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,600.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,620.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,640.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,660.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,680.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,700.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,720.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,760.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,800.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,520.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,820.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,840.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,860.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,880.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,900.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,920.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,940.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,960.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,980.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,20.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,540.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,740.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,500.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,260.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,480.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,60.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,80.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,100.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,120.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,140.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,160.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,180.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,200.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,220.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,240.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,40.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,280.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,380.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,440.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,420.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,400.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,460.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,360.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,340.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,320.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +761,300.5,107.28612646642186,-46.35693676678907,4053,17.07377251418702,-0.21808847517076782,-421.4327951722154,210.71639758610766,-217.54711653772443 +21,260.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,460.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,440.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,420.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,400.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,380.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,360.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,340.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,320.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,300.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,280.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,160.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,240.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,220.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,200.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,180.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,500.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,140.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,120.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,100.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,80.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,60.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,40.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,480.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,20.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,520.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,780.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,540.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,960.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,940.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,920.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,900.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,880.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,860.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,840.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,820.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,800.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,980.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,760.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,640.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,740.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,580.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,600.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,620.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,560.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,660.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,680.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,700.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +21,720.5,3.172421972760108,-98.41378901361995,28612,21.627289249266042,-1.0286251593775821,-268.7288221737824,134.3644110868912,-218.2488197956639 +141,540.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,740.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,580.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,600.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,620.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,640.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,660.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,680.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,700.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,720.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,560.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,820.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,760.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,780.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,800.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,840.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,860.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,880.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,900.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,920.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,940.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,500.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,520.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,260.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,480.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,220.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,20.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,40.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,60.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,80.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,100.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,120.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,140.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,160.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,180.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,200.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,240.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,460.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,960.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,280.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,300.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,320.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,340.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,360.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,380.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,400.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,420.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,440.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +141,980.5,32.23899445701422,-83.88050277149289,10670,17.872539831302717,-0.4844563685897611,-323.28924482090093,161.64462241045047,-219.00967712293038 +1,240.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,40.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,60.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,580.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,600.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,620.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,640.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,660.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,680.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,700.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,720.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,740.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,760.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,780.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,800.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,820.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,840.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,860.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,880.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,900.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,920.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,940.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,960.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,980.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,560.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,540.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,520.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,280.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,80.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,100.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,120.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,140.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,160.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,180.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,200.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,220.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,260.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,300.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,500.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,320.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,340.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,360.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,380.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,400.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,420.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,440.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,460.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,480.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,20.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +1,0.5,0.0006825550434322981,-99.99965872247829,104946,30.22220951727555,-2.7404631170214495,-228.6355754207877,114.31778771039384,-224.33944629505078 +721,540.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,260.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,440.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,420.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,400.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,380.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,360.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,340.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,320.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,300.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,280.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,240.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,480.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,220.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,200.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,180.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,160.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,140.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,120.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,100.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,80.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,60.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,980.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,500.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,20.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,760.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,940.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,920.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,900.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,880.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,860.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,840.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,820.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,800.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,780.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,740.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,520.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,720.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,700.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,680.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,660.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,640.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,620.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,600.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,580.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,560.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,40.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,460.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +721,960.5,35.07688627020804,-82.46155686489598,4230,16.666666666666664,-0.6372447988862948,-343.0311908926889,171.51559544634446,-227.32097080860711 +181,240.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,960.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,420.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,400.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,380.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,360.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,340.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,320.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,300.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,280.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,260.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,220.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,460.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,200.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,180.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,160.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,140.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,120.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,100.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,80.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,60.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,40.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,20.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,440.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,940.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,480.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,740.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,540.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,520.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,560.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,580.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,600.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,620.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,660.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,680.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,700.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,720.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,640.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,760.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,860.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,780.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,980.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,920.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,900.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,880.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,500.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,840.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,820.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +181,800.5,59.89821535573756,-70.05089232213122,9188,17.903787548976926,-0.36173830923008904,-394.55820233105754,197.27910116552877,-232.2150329653153 +521,120.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,220.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,200.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,180.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,160.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,140.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,20.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,100.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,80.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,60.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,40.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,260.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,240.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,280.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,980.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,800.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,680.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,700.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,720.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,740.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,760.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,780.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,820.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,300.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,840.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,880.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,900.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,920.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,940.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,960.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,660.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,640.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,620.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,600.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,580.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,560.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,520.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,500.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,480.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,460.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,440.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,420.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,400.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,380.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,360.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,340.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,320.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,540.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +521,860.5,31.349969743514635,-84.32501512824268,5082,17.45375836284927,-0.5379237771842487,-365.82349951970974,182.91174975985487,-237.10950026233758 +961,40.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,60.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,500.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,480.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,460.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,440.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,420.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,400.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,380.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,360.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,340.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,320.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,300.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,280.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,260.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,240.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,220.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,200.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,180.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,160.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,140.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,120.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,100.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,520.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,540.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,560.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,800.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,980.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,20.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,940.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,920.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,900.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,880.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,860.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,840.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,820.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,780.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,580.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,760.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,740.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,720.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,700.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,680.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,660.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,640.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,620.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,600.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,80.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +961,960.5,156.21709193313626,-21.89145403343187,3402,16.96061140505585,-0.09124771038846233,-541.3589788242173,270.67948941210864,-239.53001808778035 +641,980.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,500.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,460.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,440.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,420.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,400.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,380.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,360.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,340.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,320.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,300.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,280.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,260.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,240.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,220.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,200.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,180.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,160.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,140.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,120.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,100.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,80.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,60.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,480.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,520.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,20.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,540.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,960.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,940.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,920.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,900.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,880.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,860.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,840.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,820.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,800.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,780.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,760.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,740.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,720.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,700.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,680.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,660.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,640.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,620.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,600.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,580.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,560.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +641,40.5,27.656485017633866,-86.17175749118307,4539,17.338620841595066,-0.6135917372437292,-382.05883150105126,191.02941575052563,-246.35839093852834 +601,360.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,500.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,380.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,460.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,440.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,420.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,400.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,20.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,40.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,60.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,80.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,100.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,120.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,140.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,160.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,180.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,200.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,220.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,240.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,260.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,280.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,300.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,320.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,340.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,480.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,980.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,960.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,520.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,940.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,920.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,900.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,880.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,860.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,840.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,820.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,800.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,780.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,760.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,740.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,720.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,700.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,680.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,660.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,640.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,620.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,600.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,580.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,560.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +601,540.5,37.28309984246756,-81.35845007876623,4691,17.11788531230015,-0.5168501866457095,-401.54175143780486,200.77087571890243,-248.1773528936367 +901,20.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,40.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,480.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,720.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,540.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,560.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,580.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,600.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,620.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,640.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,660.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,680.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,700.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,740.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,980.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,760.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,780.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,800.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,820.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,840.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,860.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,880.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,900.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,920.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,520.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,500.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,460.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,440.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,60.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,80.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,100.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,120.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,140.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,160.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,180.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,200.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,220.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,240.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,260.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,280.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,300.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,320.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,340.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,360.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,380.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,400.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,420.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,940.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +901,960.5,212.0466816479518,6.0233408239759,3600,17.888888888888886,0.01854254575311658,-660.855097446502,330.427548723251,-258.0961876055875 +341,900.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,920.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,400.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,380.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,360.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,340.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,320.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,300.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,280.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,260.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,240.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,220.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,200.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,180.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,160.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,140.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,120.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,100.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,80.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,60.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,40.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,20.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,980.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,420.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,440.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,940.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,460.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,880.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,860.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,840.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,820.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,800.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,780.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,760.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,740.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,720.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,700.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,680.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,660.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,640.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,620.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,600.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,580.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,560.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,540.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,520.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,500.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,480.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +341,960.5,230.23431280888286,15.117156404441431,6153,17.76369250771981,0.04792921948502082,-693.9485586947349,346.9742793473674,-261.8871164396323 +701,960.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,940.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,700.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,520.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,540.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,560.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,580.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,600.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,620.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,640.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,660.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,680.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,720.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,480.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,740.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,760.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,800.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,820.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,840.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,860.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,880.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,900.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,920.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,980.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,460.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,20.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,220.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,40.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,60.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,80.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,100.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,120.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,140.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,160.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,180.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,200.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,240.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,440.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,260.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,280.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,300.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,320.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,340.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,360.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,380.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,400.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,420.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,500.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +701,780.5,15.402115907159716,-92.29894204642014,4378,17.131110095934215,-0.7015196398801834,-406.43714227408435,203.21857113704218,-263.2920346346161 +201,20.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,960.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,460.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,440.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,420.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,400.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,380.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,360.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,340.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,320.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,300.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,280.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,260.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,240.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,220.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,200.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,180.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,160.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,140.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,120.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,100.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,80.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,60.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,480.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,500.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,520.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,760.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,940.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,920.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,900.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,880.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,860.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,840.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,820.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,800.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,780.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,740.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,540.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,720.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,700.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,680.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,660.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,640.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,620.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,600.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,580.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,560.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,40.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +201,980.5,199.9590164846017,-0.020491757699147684,8549,18.306234647327173,-5.261669526742126e-05,-683.826528940572,341.913264470286,-273.5517347342712 +741,980.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,960.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,460.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,440.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,420.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,400.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,380.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,360.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,340.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,320.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,300.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,280.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,260.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,240.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,220.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,200.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,180.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,160.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,140.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,120.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,100.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,80.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,60.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,480.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,500.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,520.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,740.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,940.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,920.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,900.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,880.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,860.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,840.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,820.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,800.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,760.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,720.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,540.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,20.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,700.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,680.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,660.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,640.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,620.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,600.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,580.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,560.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,780.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +741,40.5,51.08296783492939,-74.45851608253531,4159,17.311853811012263,-0.415957525209148,-489.42734140946817,244.71367070473406,-275.2209429488323 +861,20.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,900.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,560.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,580.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,600.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,620.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,640.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,980.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,40.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,960.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,940.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,920.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,880.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,520.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,860.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,840.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,820.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,800.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,780.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,760.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,740.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,720.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,680.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,700.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,540.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,660.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,500.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,260.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,60.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,80.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,100.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,120.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,480.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,160.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,180.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,200.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,220.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,240.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,140.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,280.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,400.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,300.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,460.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,440.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,420.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,380.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,360.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,340.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +861,320.5,60.618570053501045,-69.69071497324947,3780,17.433862433862434,-0.3197562690889954,-505.31678188230495,252.65839094115248,-275.6545029552394 +661,720.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,840.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,740.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,760.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,780.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,800.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,820.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,940.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,860.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,880.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,900.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,920.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,960.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,980.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,680.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,700.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,320.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,660.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,300.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,640.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,40.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,20.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,60.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,100.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,120.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,140.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,160.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,180.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,200.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,220.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,240.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,260.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,280.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,80.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,340.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,500.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,620.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,360.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,600.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,560.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,540.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,520.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,580.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,480.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,440.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,420.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,380.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,460.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +661,400.5,28.117668568680088,-85.94116571565996,4465,17.558790593505037,-0.4559100383239127,-461.54145568508596,230.770727842543,-276.02866844958135 +781,20.5,189.78366156474752,-5.108169217626241,4140,16.884057971014492,-0.014623455448050045,-677.3272080228552,338.6636040114276,-276.21453389214497 +781,380.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,300.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,320.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,360.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,420.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,400.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,440.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,260.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,460.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,280.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,100.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,240.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,220.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,200.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,180.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,160.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,140.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,120.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,80.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,60.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,40.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,500.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,480.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,340.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,520.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,780.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,540.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,960.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,940.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,920.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,900.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,880.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,860.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,840.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,820.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,800.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,980.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,760.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,640.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,740.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,580.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,600.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,620.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,560.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,660.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,680.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,700.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +781,720.5,188.77496038997285,-5.6125198050135765,4140,16.884057971014492,-0.01606825503578728,-677.3272080228552,338.6636040114276,-276.73622207458516 +301,280.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,440.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,420.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,400.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,380.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,360.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,340.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,320.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,300.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,460.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,180.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,260.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,240.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,220.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,200.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,160.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,140.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,20.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,40.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,60.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,80.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,500.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,480.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,740.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,520.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,540.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,960.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,940.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,920.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,900.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,880.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,860.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,840.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,820.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,800.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,780.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,120.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,760.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,720.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,700.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,680.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,660.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,640.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,620.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,600.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,580.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,560.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,980.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +301,100.5,327.9944886596856,63.99724432984279,6549,18.476103221865934,0.1479566754115839,-861.490889181503,430.7454445907515,-278.8236312378194 +621,120.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,340.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,560.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,540.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,520.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,240.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,500.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,480.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,460.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,440.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,420.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,400.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,380.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,360.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,320.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,600.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,300.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,20.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,40.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,280.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,60.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,80.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,100.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,260.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,140.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,160.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,180.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,200.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,580.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,220.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,620.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,740.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,980.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,960.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,940.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,920.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,900.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,880.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,860.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,840.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,820.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,640.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,780.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,760.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,800.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,700.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,680.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,720.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +621,660.5,45.63644427787317,-77.18177786106341,4607,17.5168222270458,-0.44353821322954873,-512.9938870236459,256.49694351182296,-287.7017912292764 +441,20.5,50.50244796074355,-74.74877601962822,5514,17.31955023576351,-0.3190809410894626,-545.5517809816902,272.7758904908451,-296.79845970537787 +441,360.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,340.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,320.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,300.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,280.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,260.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,240.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,420.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,200.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,680.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,620.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,460.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,480.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,700.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,500.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,520.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,540.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,560.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,580.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,600.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,440.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,220.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,400.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,980.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,740.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,760.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,780.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,800.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,820.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,840.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,860.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,880.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,900.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,920.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,940.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,960.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,380.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,640.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,180.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,720.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,40.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,60.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,80.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,100.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,120.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,140.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,160.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +441,660.5,50.0629494286916,-74.9685252856542,5514,17.31955023576351,-0.3200238254772234,-545.9621299644014,272.9810649822007,-297.1936631771414 +681,480.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,900.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,460.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,440.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,420.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,400.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,380.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,360.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,340.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,960.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,940.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,920.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,500.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,720.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,880.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,860.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,840.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,820.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,800.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,780.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,760.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,740.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,700.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,520.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,680.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,660.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,980.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,620.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,600.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,580.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,560.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,540.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,640.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,220.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,300.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,120.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,280.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,20.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,40.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,60.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,80.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,100.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,320.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,140.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,160.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,260.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,180.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,200.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +681,240.5,14.203893716156665,-92.89805314192166,4552,16.71792618629174,-0.5274506517704308,-512.8159368955893,256.40796844779464,-304.35383572140256 +821,240.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,380.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,360.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,340.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,320.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,300.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,280.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,260.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,220.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,420.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,200.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,20.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,40.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,60.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,80.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,100.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,120.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,140.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,400.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,480.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,440.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,800.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,660.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,680.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,700.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,720.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,740.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,760.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,780.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,820.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,460.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,640.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,620.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,600.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,580.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,540.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,520.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,500.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,560.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,160.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,840.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,940.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,860.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,980.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,960.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,180.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,920.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,900.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +821,880.5,201.51787018432827,0.7589350921641369,3878,17.40587931923672,0.002440005028649688,-767.5492963533521,383.77464817667607,-306.23150338883295 +381,280.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,300.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,480.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,320.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,340.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,360.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,380.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,400.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,420.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,440.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,460.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,800.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,500.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,520.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,540.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,760.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,820.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,840.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,860.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,880.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,900.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,920.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,940.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,780.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,680.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,740.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,720.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,40.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,20.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,60.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,80.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,100.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,120.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,140.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,160.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,180.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,200.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,220.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,240.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,260.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,960.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,560.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,580.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,600.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,620.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,640.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,660.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,700.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +381,980.5,71.76579226877965,-64.11710386561018,5927,17.479331871098363,-0.22960255198947113,-622.001416634386,311.000708317193,-315.6729011432383 +541,200.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,580.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,880.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,480.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,500.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,520.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,540.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,560.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,900.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,600.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,620.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,640.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,660.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,680.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,700.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,720.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,740.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,760.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,780.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,800.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,820.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,840.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,860.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,920.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,940.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,960.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,460.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,980.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,180.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,80.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,40.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,20.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,220.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,240.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,260.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,280.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,100.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,300.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,320.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,340.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,360.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,380.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,400.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,420.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,440.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,120.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,140.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,160.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +541,60.5,191.74063968284574,-4.1296801585771306,4910,17.90224032586558,-0.010001451147103256,-781.9317657177538,390.9658828588769,-317.0224038594439 +241,580.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,560.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,540.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,660.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,680.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,740.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,720.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,700.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,600.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,520.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,640.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,620.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,360.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,200.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,220.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,240.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,260.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,280.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,780.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,300.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,320.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,340.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,380.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,400.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,420.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,440.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,460.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,760.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,480.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,800.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,160.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,500.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,140.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,120.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,100.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,820.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,80.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,60.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,40.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,20.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,980.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,960.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,940.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,920.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,900.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,880.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,860.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,840.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +241,180.5,150.68948172138627,-24.655259139306864,7508,18.22056473095365,-0.07683304770121328,-763.8542780134634,381.9271390067317,-331.1189669171068 +921,220.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,160.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,180.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,200.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,80.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,60.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,40.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,20.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,140.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,580.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,240.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,820.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,680.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,700.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,720.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,740.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,760.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,780.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,800.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,840.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,640.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,860.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,880.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,900.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,920.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,940.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,960.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,980.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,660.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,620.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,260.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,420.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,280.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,300.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,320.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,340.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,360.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,380.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,400.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,440.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,600.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,460.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,480.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,500.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,520.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,540.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,560.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,100.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +921,120.5,217.17032156849692,8.585160784248458,3470,17.98270893371758,0.024311888371263857,-920.2898700072842,460.1449350036421,-359.2390445582101 +561,880.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,20.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,620.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,400.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,420.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,440.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,460.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,480.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,500.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,520.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,540.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,560.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,580.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,640.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,360.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,660.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,680.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,700.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,720.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,740.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,760.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,780.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,800.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,820.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,840.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,380.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,340.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,40.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,220.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,60.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,80.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,100.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,120.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,140.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,860.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,160.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,180.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,320.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,200.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,240.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,260.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,980.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,960.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,940.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,920.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,900.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,280.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,300.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +561,600.5,226.03457578699812,13.017287893499061,4788,17.543859649122805,0.028734225499836934,-980.9788956025395,490.48944780126976,-379.0294596415187 +221,20.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,40.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,60.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,960.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,480.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,240.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,400.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,380.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,360.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,340.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,320.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,300.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,280.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,260.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,220.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,440.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,200.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,180.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,160.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,140.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,920.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,940.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,980.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,880.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,420.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,460.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,100.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,680.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,840.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,820.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,800.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,780.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,760.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,740.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,720.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,700.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,660.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,900.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,640.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,620.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,600.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,580.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,560.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,540.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,520.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,500.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,120.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,860.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +221,80.5,286.0737383205149,43.03686916025745,7916,18.44365841334007,0.0952656341506708,-1148.2407909130716,574.1203954565358,-415.11625959516317 +881,160.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,440.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,640.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,620.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,600.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,580.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,560.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,540.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,520.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,500.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,480.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,460.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,420.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,680.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,400.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,380.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,360.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,340.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,320.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,300.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,280.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,140.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,260.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,240.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,660.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,220.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,940.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,700.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,100.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,80.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,60.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,40.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,20.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,180.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,200.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,980.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,960.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,920.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,900.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,880.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,860.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,840.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,820.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,800.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,780.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,760.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,740.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,720.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +881,120.5,134.49922762481498,-32.75038618759251,3671,17.134295832198312,-0.09857599987211076,-965.8784125821835,482.93920629109175,-420.2846632189313 +261,20.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,60.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,40.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,160.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,80.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,460.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,640.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,620.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,580.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,560.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,540.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,520.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,500.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,480.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,440.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,100.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,260.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,420.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,280.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,300.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,320.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,400.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,340.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,360.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,660.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,680.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,700.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,720.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,120.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,140.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,180.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,200.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,220.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,240.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,940.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,920.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,900.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,880.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,860.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,840.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,820.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,800.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,780.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,760.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,740.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,600.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,980.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,960.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +261,380.5,372.9439831194855,86.47199155974275,7222,18.360564940459707,0.1305071605118684,-1318.2678932518868,659.1339466259434,-439.26907981486954 +581,60.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,300.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,480.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,460.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,440.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,420.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,400.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,380.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,360.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,340.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,320.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,280.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,520.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,260.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,240.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,220.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,200.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,180.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,160.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,140.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,120.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,100.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,500.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,540.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,980.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,780.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,960.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,940.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,920.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,900.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,880.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,860.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,840.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,820.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,800.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,760.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,560.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,740.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,720.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,700.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,680.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,660.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,640.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,620.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,600.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,580.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,80.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,40.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +581,20.5,180.37847988099134,-9.810760059504332,4796,17.368640533778148,-0.01934060831785537,-1091.9061865425017,545.9530932712509,-446.8053219763193 +841,20.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,280.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,480.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,460.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,440.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,420.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,400.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,380.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,360.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,340.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,320.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,300.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,260.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,240.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,220.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,200.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,180.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,160.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,140.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,120.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,100.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,80.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,60.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,500.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,520.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,540.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,560.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,940.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,920.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,900.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,880.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,860.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,840.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,820.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,800.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,780.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,760.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,740.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,720.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,700.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,680.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,660.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,640.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,620.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,960.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,980.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,600.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,580.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 +841,40.5,182.09688943900926,-8.95155528049537,3864,17.236024844720497,-0.024183032148308713,-1100.46440616591,550.232203082955,-449.42751413263915 diff --git a/strategy/results/bb_full_grid_5m_20260227_150421.csv b/strategy/results/bb_full_grid_5m_20260227_150421.csv new file mode 100644 index 0000000..c20ca42 --- /dev/null +++ b/strategy/results/bb_full_grid_5m_20260227_150421.csv @@ -0,0 +1,2501 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score +761,860.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,460.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,500.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,520.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,540.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,560.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,580.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,600.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,620.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,660.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,680.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,700.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,720.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,740.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,760.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,780.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,800.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,820.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,840.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,880.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,900.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,920.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,940.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,960.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,980.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,480.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,640.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,440.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,220.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,20.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,40.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,420.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,80.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,100.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,120.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,140.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,160.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,180.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,200.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,60.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,240.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,340.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,260.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,400.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,360.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,380.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,320.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,300.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +761,280.5,1694.3210461880285,747.1605230940143,11642,19.64439099811029,0.4083767095910171,-1477.4040171065799,738.7020085532899,161.09943676647447 +321,780.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,940.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,760.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,800.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,820.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,840.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,860.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,880.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,900.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,920.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,220.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,960.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,980.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,240.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,200.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,180.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,120.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,140.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,160.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,720.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,740.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,660.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,700.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,680.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,320.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,340.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,80.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,360.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,380.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,400.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,420.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,440.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,460.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,480.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,500.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,520.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,540.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,560.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,580.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,600.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,620.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,640.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,260.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,100.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,300.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,60.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,40.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,20.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +321,280.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354 +301,220.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,200.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,560.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,540.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,520.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,500.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,480.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,460.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,440.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,420.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,400.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,380.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,600.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,340.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,320.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,300.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,280.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,260.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,240.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,360.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,640.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,620.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,120.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,100.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,80.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,140.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,960.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,940.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,920.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,900.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,880.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,860.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,840.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,820.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,800.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,780.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,760.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,740.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,720.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,700.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,680.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,660.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,580.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,980.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,160.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,60.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,20.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,40.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +301,180.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427 +381,20.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,340.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,540.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,520.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,500.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,480.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,460.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,440.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,420.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,400.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,380.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,360.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,320.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,580.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,300.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,280.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,260.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,240.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,220.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,200.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,180.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,160.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,140.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,40.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,560.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,600.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,120.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,620.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,60.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,80.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,980.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,960.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,940.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,920.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,900.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,880.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,860.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,840.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,820.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,800.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,780.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,760.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,740.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,720.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,700.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,680.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,660.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,640.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +381,100.5,34.46381963144339,-82.76809018427831,17455,19.736465196218848,-0.6469226896338756,-212.78814081890346,106.39407040945173,-175.64641878744618 +901,0.5,13.45175555605595,-93.27412222197202,10264,30.670303975058456,-0.8952537525217249,-189.5983790965677,94.79918954828385,-179.8565188908598 +941,20.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,980.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,960.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,260.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,440.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,420.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,400.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,380.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,360.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,340.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,320.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,300.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,280.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,240.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,940.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,220.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,200.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,180.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,160.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,140.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,120.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,100.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,80.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,60.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,460.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,480.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,500.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,520.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,40.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,900.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,880.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,860.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,840.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,820.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,800.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,780.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,760.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,740.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,720.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,700.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,660.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,640.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,620.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,600.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,580.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,560.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,540.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,920.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +941,680.5,10.989008391528442,-94.50549580423578,9838,18.642000406586703,-0.6753971638530403,-195.65045362873127,97.82522681436564,-180.87044322196476 +541,0.5,10.834367893235116,-94.58281605338244,14312,33.81078814980436,-0.8522333566611422,-193.88867920854335,96.94433960427168,-182.3650880167335 +421,0.5,9.443862362662603,-95.2780688186687,16675,34.90254872563718,-0.8565356226326339,-192.34325145502493,96.17162572751246,-182.4937968722703 +841,0.5,10.310183575424741,-94.84490821228763,10861,31.332289844397387,-0.8530388841648758,-194.76150808693225,97.38075404346613,-182.98597805703906 +881,0.5,7.902916791508354,-96.04854160424583,10417,30.181434194105787,-0.8335536004007106,-193.29365415378072,96.64682707689036,-183.36864647056666 +541,960.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,900.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,480.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,500.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,520.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,940.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,540.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,560.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,580.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,600.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,640.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,660.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,680.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,700.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,720.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,460.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,760.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,780.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,800.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,820.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,840.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,860.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,980.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,920.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,880.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,740.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,620.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,440.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,160.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,340.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,320.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,300.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,280.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,260.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,240.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,220.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,400.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,180.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,200.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,140.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,120.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,100.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,80.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,60.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,40.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,20.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,360.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,380.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +541,420.5,23.50151635463356,-88.24924182268322,14330,19.755757152826238,-0.39925795811621234,-229.40369109534035,114.70184554767017,-184.8018137582139 +281,760.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,980.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,960.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,940.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,920.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,900.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,860.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,620.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,500.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,260.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,280.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,300.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,320.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,340.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,360.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,380.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,400.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,420.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,440.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,460.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,480.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,520.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,220.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,540.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,560.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,580.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,600.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,640.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,660.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,680.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,700.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,800.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,780.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,720.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,740.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,240.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,880.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,200.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,80.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,180.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,840.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,20.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,40.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,60.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,820.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,100.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,120.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,140.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +281,160.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033 +741,0.5,6.2843425417073675,-96.85782872914632,11873,31.390549987366295,-0.8969392876396447,-195.7980518666004,97.8990259333002,-185.9403209274622 +781,0.5,17.733610917320206,-91.13319454133989,11550,31.151515151515152,-0.6099123010425335,-219.71294931989848,109.85647465994923,-186.33732188180966 +921,0.5,4.73236668283665,-97.63381665858168,10152,30.112293144208035,-0.8537636993391946,-197.13439496111206,98.56719748055603,-186.73273903509684 +721,540.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,480.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,500.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,520.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,600.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,560.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,580.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,620.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,640.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,440.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,460.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,320.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,420.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,400.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,380.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,360.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,340.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,680.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,300.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,280.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,260.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,240.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,220.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,660.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,760.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,700.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,180.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,140.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,120.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,100.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,80.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,60.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,40.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,720.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,20.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,200.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,980.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,960.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,940.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,920.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,900.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,880.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,860.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,840.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,820.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,800.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,780.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,740.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +721,160.5,18.0639649008052,-90.9680175495974,12127,18.965943761853715,-0.36216444171066914,-230.82641024185864,115.41320512092932,-187.64455494686888 +341,0.5,5.788510218720986,-97.10574489063951,18061,36.35457615857372,-1.0526229448270583,-195.16565780442238,97.58282890221119,-187.80348335033318 +221,0.5,4.242820866036348,-97.87858956698183,22445,38.63666740922254,-0.9196466378796627,-197.80610797535374,98.90305398767687,-188.03679241167927 +381,0.5,9.934051561244726,-95.03297421937764,17401,35.50945347968508,-1.2765189466749551,-194.33574840442995,97.16787420221497,-188.08550094124908 +801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832 +861,0.5,7.930601469730025,-96.03469926513499,10675,31.447306791569083,-0.9545591710130511,-201.6103170711225,100.80515853556125,-188.1335361457406 +441,0.5,6.117433319922491,-96.94128334003875,16368,34.81793743890518,-1.1115302583029414,-195.0745602810249,97.53728014051245,-188.309470552084 +361,0.5,4.01659208585399,-97.991703957073,17629,35.98048669805434,-0.9845513107550989,-196.46816193986626,98.23408096993313,-188.3935844620807 +261,0.5,7.194864160194866,-96.40256791990257,20778,37.145057272114734,-1.1027981263110411,-197.99166960822132,98.99583480411066,-188.8328132789236 +501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172 +61,240.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,280.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,480.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,460.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,440.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,420.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,400.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,380.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,360.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,340.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,320.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,300.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,260.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,520.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,220.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,200.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,180.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,160.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,140.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,120.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,100.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,80.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,60.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,40.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,500.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,540.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,800.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,780.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,940.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,920.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,900.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,880.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,860.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,840.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,20.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,820.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,560.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,760.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,980.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,740.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,720.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,700.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,680.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,660.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,640.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,620.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,600.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,580.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +61,960.5,0.6711409318082459,-99.66442953409587,46852,22.131392469905233,-0.7467447191672053,-201.21777452725777,100.60888726362889,-189.11247597500545 +481,0.5,2.4364511524355414,-98.78177442378222,15682,33.911490881265145,-0.9403760880916001,-197.7897151962296,98.8948575981148,-189.18217355937327 +561,0.5,4.83477664373758,-97.58261167813122,13960,33.60315186246418,-0.7538269033982785,-206.79941606417282,103.39970803208641,-189.3483009445797 +701,0.5,1.6035402845204254,-99.19822985773979,12485,31.229475370444533,-0.8874406539711374,-198.89129268300212,99.44564634150106,-189.40403477859428 +521,0.5,2.001378041348415,-98.9993109793258,14987,33.14872889837859,-0.832422567585732,-201.2401742727141,100.62008713635706,-189.48445149944024 +281,0.5,1.769027416146694,-99.11548629192666,19955,36.582310197945375,-0.9060171949665103,-198.8565442720884,99.4282721360442,-189.53031034036013 +461,0.5,3.8196116091269605,-98.09019419543652,15965,34.33761352959599,-1.0572231142876216,-197.1446177505008,98.5723088752504,-189.63471866708832 +681,0.5,3.6550565704691653,-98.17247171476542,12903,31.481050918391073,-0.9366330918759593,-201.2403079392376,100.62015396961881,-189.90819199297198 +581,0.5,1.64700346823136,-99.17649826588432,13988,32.327709465255936,-0.9076581049976229,-202.12747040135795,101.06373520067898,-190.919383686399 +401,20.5,6.083954392876169,-96.95802280356192,17153,19.413513671077943,-0.5543782546534547,-218.3235144727967,109.16175723639834,-190.93996764852204 +101,0.5,2.9344181713149435,-98.53279091434253,35484,40.70003381805884,-1.0207595955600905,-200.5343407319586,100.2671703659793,-190.99564235384705 +401,680.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,500.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,520.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,540.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,560.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,580.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,920.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,620.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,640.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,660.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,740.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,700.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,720.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,880.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,760.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,780.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,820.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,840.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,860.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,460.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,900.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,480.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,40.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,440.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,220.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,980.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,960.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,60.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,80.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,100.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,120.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,140.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,160.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,180.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,420.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,240.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,260.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,280.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,300.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,320.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,340.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,360.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,380.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +401,940.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151 +121,0.5,1.645196068399387,-99.1774019658003,32554,39.93057688763286,-1.0446362898321746,-199.73201619937916,99.86600809968958,-191.60584392353806 +721,0.5,2.0338685470952176,-98.9830657264524,12119,30.75336248865418,-1.0551988284426095,-200.72824919917474,100.36412459958737,-191.9367513474336 +241,0.5,1.5305911156208258,-99.23470444218958,21346,38.278834442050034,-1.0894664080623522,-199.57056632898355,99.78528316449177,-192.13652787053124 +401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248 +941,0.5,1.034194211632415,-99.4829028941838,9827,29.795461483667445,-1.0678019176396492,-200.29811569058936,100.14905784529469,-192.41577218209534 +961,0.5,1.5117252450780636,-99.24413737746097,9619,30.273417195134627,-0.9145217954891511,-206.15662715058446,103.07831357529223,-192.68104978356456 +201,980.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,960.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,940.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,920.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,900.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,880.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,860.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,840.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,820.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,780.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,760.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,740.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,720.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,700.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,340.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,300.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,280.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,260.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,240.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,220.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,180.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,140.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,120.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,100.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,80.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,60.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,40.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,680.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,20.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,320.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,160.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,360.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,520.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,380.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,640.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,620.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,560.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,540.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,580.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,500.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,480.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,460.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,440.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,420.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +201,660.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279 +321,0.5,1.4478510397485156,-99.27607448012574,18661,35.98949681153207,-1.201329095597594,-198.7617069785259,99.38085348926295,-193.1967064187072 +361,440.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,580.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,460.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,480.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,500.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,520.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,540.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,560.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,740.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,600.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,620.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,640.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,660.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,680.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,700.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,720.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,760.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,400.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,420.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,60.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,380.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,360.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,20.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,40.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,800.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,80.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,100.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,120.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,140.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,160.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,180.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,200.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,220.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,240.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,260.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,280.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,300.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,320.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,340.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,780.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,940.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,820.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,840.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,860.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,880.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,900.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,920.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,960.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +361,980.5,20.87981710024072,-89.56009144987964,17669,19.44648819967174,-0.48459394358576097,-245.3798096007023,122.68990480035113,-193.52714261318968 +981,0.5,1.433810515211546,-99.28309474239423,9557,29.68504760908235,-0.882274531202573,-209.8941158764313,104.94705793821566,-193.82803546739763 +301,0.5,3.288758436016597,-98.3556207819917,18999,36.78614663929681,-0.9796482828217248,-210.34848032205863,105.17424016102932,-194.25079230467585 +201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145 +41,0.5,0.041447029234176626,-99.97927648538291,56284,40.84997512614598,-1.008221956112378,-205.78912685646796,102.89456342823398,-194.39359070131866 +821,0.5,12.390539014330974,-93.80473049283451,11087,31.072427166952288,-0.651802435386327,-232.63522444738894,116.31761222369448,-194.68044949642604 +481,20.5,1.663955284744091,-99.16802235762796,15685,19.266815428753585,-0.5855922907976959,-222.55784469437597,111.27892234718799,-195.21826772495072 +481,440.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,160.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,340.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,320.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,300.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,280.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,260.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,240.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,220.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,200.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,180.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,140.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,380.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,120.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,100.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,80.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,60.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,40.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,920.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,940.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,960.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,980.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,360.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,400.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,460.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,900.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,480.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,500.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,520.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,540.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,560.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,580.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,600.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,620.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,640.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,660.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,680.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,700.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,720.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,740.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,760.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,780.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,420.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,820.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,840.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,860.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,880.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +481,800.5,1.660038486012602,-99.1699807569937,15685,19.266815428753585,-0.5856143833987629,-222.56140950129935,111.28070475064969,-195.2219171582986 +81,0.5,0.9655808324911037,-99.51720958375445,39553,41.26867747073547,-1.4449993489767177,-199.17747180830432,99.58873590415216,-196.52819049479677 +661,0.5,1.528484667289858,-99.23575766635507,13025,31.946257197696738,-0.7680161926809156,-220.4956959318078,110.2478479659039,-196.65023035124918 +61,0.5,0.7668170647576383,-99.61659146762118,45386,41.60754417661834,-1.4262290365337298,-199.8372311364892,99.9186155682446,-196.66623236062162 +41,20.5,0.017696144371817355,-99.99115192781409,58794,22.378133823179237,-0.7285582364048866,-220.38733166854774,110.19366583427387,-196.88878343209183 +41,700.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,260.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,440.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,420.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,400.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,380.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,360.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,340.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,320.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,300.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,280.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,240.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,720.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,220.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,200.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,180.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,160.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,140.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,120.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,100.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,80.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,640.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,460.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,480.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,500.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,40.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,740.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,760.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,780.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,800.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,820.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,840.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,860.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,620.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,900.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,920.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,940.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,960.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,980.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,680.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,600.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,580.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,560.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,540.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,520.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,880.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,660.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +41,60.5,0.017094240951338234,-99.99145287952433,58794,22.378133823179237,-0.7328810770601382,-220.38792852787086,110.19396426393541,-196.9411972153943 +621,0.5,9.603780250442313,-95.19810987477885,13298,32.741765679049486,-0.6903566197696623,-233.70867779395132,116.85433889697565,-196.96586042959532 +961,840.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,700.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,500.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,520.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,540.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,560.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,580.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,600.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,620.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,640.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,660.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,680.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,720.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,460.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,740.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,760.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,780.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,800.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,820.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,860.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,880.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,980.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,920.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,900.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,480.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,400.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,940.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,240.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,440.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,60.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,80.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,100.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,120.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,140.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,160.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,180.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,200.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,220.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,40.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,260.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,380.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,280.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,420.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,960.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,20.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,360.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,320.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,300.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +961,340.5,12.33085639407485,-93.83457180296257,9622,19.122843483683226,-0.389702944468022,-246.58393239681016,123.29196619840508,-197.1445800953029 +241,140.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,520.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,500.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,480.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,80.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,460.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,440.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,420.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,400.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,380.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,340.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,360.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,320.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,300.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,260.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,240.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,220.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,200.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,180.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,160.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,40.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,280.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,740.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,540.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,800.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,980.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,960.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,940.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,920.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,900.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,880.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,860.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,840.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,820.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,780.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,560.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,760.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,720.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,700.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,680.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,660.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,640.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,620.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,600.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,580.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,60.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,120.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,100.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +241,20.5,14.75323722697012,-92.62338138651494,21476,20.72546097969827,-0.6147012793275682,-247.03668952855898,123.5183447642795,-198.81447254986938 +161,280.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,480.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,460.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,440.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,420.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,400.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,380.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,360.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,340.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,320.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,300.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,260.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,520.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,240.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,200.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,180.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,160.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,140.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,120.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,100.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,80.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,60.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,500.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,540.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,20.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,560.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,980.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,960.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,940.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,920.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,900.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,880.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,860.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,840.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,820.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,800.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,780.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,760.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,740.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,720.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,700.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,680.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,660.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,640.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,620.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,600.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,580.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,40.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,220.5,0.5869955515964692,-99.70650222420177,27823,20.67354347122884,-0.8684828298480397,-222.32475636113264,111.16237818056631,-199.0581987268313 +161,0.5,0.2685892319419987,-99.865705384029,27551,39.083880802874674,-1.342371861754411,-208.40151425694705,104.20075712847353,-199.33477342786074 +81,260.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,460.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,440.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,420.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,400.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,380.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,360.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,340.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,320.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,980.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,280.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,240.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,500.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,220.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,200.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,180.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,160.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,140.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,120.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,100.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,80.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,60.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,40.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,480.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,300.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,520.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,960.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,940.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,920.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,900.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,880.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,860.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,840.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,820.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,20.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,800.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,780.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,760.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,740.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,720.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,700.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,680.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,660.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,640.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,620.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,600.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,580.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,560.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +81,540.5,1.5919727231579546,-99.20401363842102,40558,21.650475861728882,-0.597844544661025,-233.20443857023713,116.60221928511857,-199.65992360244817 +181,0.5,0.9753992694227842,-99.51230036528861,25705,38.87570511573624,-0.9773350993114092,-221.07516321775063,110.53758160887533,-199.6703868441258 +441,20.5,7.596689357360179,-96.2016553213199,16385,19.456820262435155,-0.5557032467011732,-242.31918008929435,121.15959004464717,-199.79776631745173 +441,200.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,40.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,60.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,80.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,100.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,120.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,140.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,160.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,180.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,420.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,400.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,240.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,260.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,280.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,300.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,320.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,340.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,360.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,380.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,220.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,940.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,800.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,700.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,440.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,980.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,960.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,920.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,900.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,880.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,860.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,840.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,820.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,780.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,760.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,720.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,740.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,680.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,580.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,460.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,480.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,500.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,520.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,560.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,540.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,600.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,620.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,640.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +441,660.5,7.530579021013603,-96.2347104894932,16385,19.456820262435155,-0.5559279562396507,-242.37479916276644,121.18739958138323,-199.8557656294756 +461,20.5,4.434004284444087,-97.78299785777796,15985,19.411948701908038,-0.8755121473805093,-229.11962312436742,114.55981156218371,-199.93699287609104 +461,500.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,560.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,580.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,540.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,520.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,980.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,480.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,460.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,440.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,620.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,600.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,840.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,640.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,660.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,680.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,700.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,720.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,740.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,760.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,780.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,800.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,820.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,900.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,420.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,880.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,920.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,200.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,400.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,380.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,360.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,340.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,300.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,280.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,260.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,240.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,220.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,320.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,180.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,80.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,160.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,860.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,40.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,60.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,940.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,120.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,140.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,960.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +461,100.5,4.423584762934844,-97.78820761853258,15985,19.411948701908038,-0.87565691286304,-229.1288969822698,114.5644484911349,-199.94764936579696 +981,720.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,820.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,740.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,760.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,780.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,800.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,880.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,840.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,860.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,900.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,920.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,960.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,940.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,680.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,700.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,180.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,300.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,280.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,260.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,240.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,220.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,200.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,140.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,660.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,120.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,100.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,80.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,60.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,40.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,20.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,320.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,340.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,360.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,380.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,400.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,420.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,440.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,460.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,480.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,500.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,520.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,540.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,560.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,580.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,600.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,620.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,640.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,160.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +981,980.5,12.757039060933225,-93.62148046953338,9562,18.719933068395733,-0.3009435518775879,-257.6038656289539,128.80193281447694,-200.274349343646 +761,0.5,34.15657568886656,-82.92171215556672,11632,31.542297111416783,-0.5954295868873956,-275.94605520118887,137.97302760059443,-200.44528927869104 +1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,760.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,560.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,580.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,620.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,640.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,660.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,680.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,700.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,720.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,740.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,780.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,520.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,820.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,840.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,860.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,880.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,900.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,920.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,940.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,980.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,20.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,540.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,960.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,240.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,480.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,60.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,80.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,40.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,100.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,120.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,140.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,180.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,220.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,160.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,260.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,440.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,300.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,320.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,460.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,340.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,360.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,380.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,420.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +1,280.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663 +221,700.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,680.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,660.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,560.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,640.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,620.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,600.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,580.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,740.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,720.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,980.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,760.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,780.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,800.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,820.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,840.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,860.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,880.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,900.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,920.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,960.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,520.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,540.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,320.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,500.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,480.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,20.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,60.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,80.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,100.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,120.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,140.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,160.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,180.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,200.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,220.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,240.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,260.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,280.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,300.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,340.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,360.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,380.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,400.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,420.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,440.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,460.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,40.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +221,940.5,112.76133927848966,-43.61933036075517,22569,20.94908945899242,-0.11826710369636445,-399.68472375648577,199.84236187824288,-204.91242510770587 +641,0.5,7.108859136176257,-96.44557043191188,13224,32.07803992740472,-0.7583607071098977,-249.16885794340766,124.58442897170383,-205.21344209459372 +121,320.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,760.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,720.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,700.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,680.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,660.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,640.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,620.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,600.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,580.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,560.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,540.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,520.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,500.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,480.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,460.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,440.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,400.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,380.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,80.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,60.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,300.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,40.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,20.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,740.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,420.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,780.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,120.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,800.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,340.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,360.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,280.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,240.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,220.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,200.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,180.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,160.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,140.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,260.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,100.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,920.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,820.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,840.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,880.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,900.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,860.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,940.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,960.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +121,980.5,1.2605473760065111,-99.36972631199674,33046,21.028263632512257,-0.4868456824111407,-251.43609030718045,125.71804515359023,-205.78631062380262 +601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773 +141,0.5,0.9920270759077073,-99.50398646204614,29749,39.53746344414938,-1.0602682514390935,-236.9191197367836,118.4595598683918,-206.9948533740287 +501,580.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,600.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,460.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,560.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,540.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,520.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,480.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,360.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,420.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,400.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,380.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,340.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,320.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,300.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,640.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,280.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,620.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,860.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,660.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,680.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,240.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,980.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,960.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,940.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,920.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,900.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,880.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,840.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,820.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,800.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,780.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,760.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,740.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,720.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,700.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,260.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,440.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,220.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,20.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,180.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,160.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,140.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,120.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,100.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,80.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,60.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,200.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +501,40.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338 +21,0.5,0.010965024904747085,-99.99451748754763,79775,39.711689125665934,-1.2141873143847706,-242.21317158288628,121.10658579144314,-211.4500338933194 +561,120.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,340.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,500.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,280.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,260.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,240.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,220.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,200.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,180.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,160.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,140.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,680.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,100.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,80.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,60.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,40.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,20.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,700.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,620.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,600.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,580.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,560.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,540.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,520.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,780.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,760.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,740.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,720.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,460.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,320.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,300.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,360.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,880.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,660.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,640.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,380.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,980.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,960.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,940.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,920.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,900.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,480.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,860.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,820.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,800.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,400.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,420.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,440.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +561,840.5,11.567929405860644,-94.21603529706968,13966,20.091651152799656,-0.42834039999643214,-283.31879762250657,141.65939881125328,-212.6836391460295 +101,480.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,600.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,580.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,560.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,540.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,520.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,500.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,420.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,460.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,440.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,260.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,280.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,300.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,320.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,360.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,400.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,380.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,340.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,220.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,980.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,960.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,180.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,160.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,140.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,120.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,100.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,80.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,60.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,40.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,20.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,660.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,680.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,700.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,720.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,240.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,200.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,760.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,780.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,800.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,820.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,840.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,860.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,880.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,900.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,920.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,940.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,740.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,620.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +101,640.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004 +581,60.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,260.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,460.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,440.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,420.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,400.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,380.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,360.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,340.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,320.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,300.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,280.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,240.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,520.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,220.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,200.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,180.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,160.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,140.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,120.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,100.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,80.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,40.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,480.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,500.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,780.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,540.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,980.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,960.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,940.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,920.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,900.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,880.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,860.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,840.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,820.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,800.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,20.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,760.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,740.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,720.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,700.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,680.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,660.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,640.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,620.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,600.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,580.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +581,560.5,2.304798413579259,-98.84760079321038,13981,19.1617194764323,-0.48250669245263317,-285.7257037171915,142.86285185859575,-218.9279625895186 +21,20.5,0.00043289925579133006,-99.9997835503721,84947,23.957291016751622,-0.5120799202809959,-295.06366646494337,147.53183323247168,-224.1702091797214 +521,960.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,980.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,600.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,240.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,560.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,540.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,520.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,500.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,480.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,460.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,440.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,420.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,400.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,380.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,360.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,340.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,320.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,300.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,280.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,580.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,620.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,640.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,820.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,940.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,920.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,900.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,880.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,860.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,840.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,800.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,660.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,780.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,760.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,740.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,720.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,700.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,680.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,260.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,80.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,220.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,100.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,20.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,40.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,60.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,200.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,120.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,160.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,180.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +521,140.5,3.558821277149315,-98.22058936142534,14992,19.630469583778016,-0.35365370898789117,-312.91395077379315,156.45697538689657,-227.6300141787973 +141,740.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,100.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,560.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,580.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,600.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,620.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,640.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,660.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,680.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,700.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,720.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,780.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,760.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,800.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,820.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,140.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,860.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,880.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,900.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,920.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,940.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,960.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,980.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,840.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,120.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,160.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,380.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,20.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,540.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,520.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,500.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,480.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,180.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,440.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,420.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,80.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,400.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,460.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,200.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,260.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,360.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,220.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,40.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,240.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,60.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,300.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,320.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,340.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +141,280.5,4.1489686043404,-97.9255156978298,30091,20.65401615100861,-0.4814041115675331,-311.207124787311,155.6035623936555,-228.1852149515646 +181,740.5,14.112807706113045,-92.94359614694348,25815,20.63528956033314,-0.4542132253539215,-326.0117792097359,163.00588960486795,-228.7988665350849 +181,280.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,140.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,220.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,200.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,180.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,160.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,80.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,120.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,100.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,60.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,40.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,20.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,300.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,920.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,240.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,620.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,660.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,680.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,700.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,720.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,760.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,780.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,800.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,820.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,860.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,880.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,900.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,260.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,940.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,960.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,980.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,640.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,840.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,600.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,440.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,580.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,320.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,340.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,380.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,400.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,420.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,360.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,480.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,500.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,520.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,540.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,460.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +181,560.5,13.426859791565604,-93.28657010421719,25913,20.646007795315093,-0.45602310778001637,-326.0117792097359,163.00588960486795,-229.16355908147176 +21,440.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,340.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,280.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,300.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,960.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,400.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,360.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,380.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,420.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,240.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,260.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,100.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,220.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,200.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,180.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,160.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,140.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,120.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,80.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,60.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,40.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,480.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,460.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,980.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,500.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,760.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,520.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,940.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,920.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,900.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,880.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,860.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,840.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,820.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,800.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,780.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,320.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,740.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,700.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,680.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,660.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,640.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,620.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,600.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,580.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,560.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,540.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +21,720.5,0.00042616753000955873,-99.999786916235,84947,23.957291016751622,-0.5153772865178613,-317.6983997698495,158.84919988492476,-233.26367426238915 +341,640.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,700.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,680.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,660.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,560.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,620.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,600.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,580.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,740.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,720.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,840.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,760.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,780.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,800.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,820.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,520.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,860.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,880.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,900.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,920.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,940.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,960.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,980.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,540.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,440.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,500.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,220.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,20.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,40.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,60.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,80.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,100.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,120.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,140.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,160.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,180.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,480.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,200.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,240.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,260.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,280.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,320.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,340.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,360.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,380.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,400.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,420.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,460.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +341,300.5,26.698690822986244,-86.65065458850688,18096,19.57338638373121,-0.27352649952664626,-365.9018904500491,182.95094522502455,-236.29372876284629 +421,20.5,27.208149055396262,-86.39592547230187,16723,19.571847156610655,-0.20810486720210958,-390.496944603848,195.248472301924,-245.0919617202664 +421,480.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,460.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,800.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,980.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,420.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,400.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,380.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,360.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,340.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,320.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,300.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,280.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,260.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,240.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,220.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,200.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,180.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,160.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,140.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,120.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,100.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,80.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,60.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,440.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,960.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,740.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,940.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,700.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,680.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,660.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,640.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,620.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,600.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,580.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,560.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,540.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,520.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,500.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,760.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,780.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,820.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,840.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,860.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,880.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,900.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,920.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,40.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +421,720.5,26.96510843662784,-86.51744578168608,16723,19.571847156610655,-0.2084117341189259,-390.6370782967763,195.31853914838814,-245.2732179098237 +741,920.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,260.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,420.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,400.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,380.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,360.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,340.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,320.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,240.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,300.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,280.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,20.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,460.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,40.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,60.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,80.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,100.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,120.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,140.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,160.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,180.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,200.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,440.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,480.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,960.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,720.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,900.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,880.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,860.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,840.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,820.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,800.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,780.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,760.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,740.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,700.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,500.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,680.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,660.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,640.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,620.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,600.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,580.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,560.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,540.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,520.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,940.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,220.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +741,980.5,107.2396548234073,-46.38017258829635,11878,19.616096986024584,-0.09011180318333054,-505.5512404133726,252.77562020668628,-249.68201039184535 +661,360.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,980.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,840.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,860.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,880.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,900.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,920.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,940.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,960.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,380.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,820.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,20.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,40.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,80.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,100.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,120.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,140.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,160.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,420.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,800.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,200.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,780.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,440.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,460.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,480.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,500.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,520.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,540.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,560.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,580.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,600.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,620.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,640.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,660.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,680.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,700.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,720.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,740.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,760.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,180.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,60.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,220.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,320.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,340.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,240.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,400.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,300.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,280.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +661,260.5,7.267954669923992,-96.366022665038,13038,19.765301426599173,-0.26066869870182163,-380.63795889311103,190.31897944655552,-251.74923060670426 +861,540.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,580.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,600.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,620.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,640.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,660.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,680.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,700.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,720.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,740.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,760.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,780.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,800.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,820.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,840.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,860.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,880.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,900.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,920.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,940.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,960.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,980.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,560.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,520.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,340.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,500.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,360.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,380.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,400.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,320.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,300.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,280.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,260.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,240.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,220.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,200.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,180.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,160.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,140.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,120.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,100.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,80.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,60.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,40.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,420.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,440.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,460.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,480.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +861,20.5,127.32856767507748,-36.33571616246126,10677,19.771471387093754,-0.06543184007897886,-607.5144822733384,303.7572411366692,-280.1266911527444 +601,500.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,60.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,460.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,440.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,420.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,380.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,360.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,40.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,20.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,340.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,320.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,300.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,280.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,260.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,240.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,220.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,180.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,160.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,140.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,120.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,100.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,480.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,520.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,540.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,780.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,980.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,960.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,940.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,920.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,900.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,880.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,860.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,840.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,820.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,760.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,740.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,720.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,700.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,680.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,660.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,640.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,620.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,580.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,560.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +601,80.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043 +641,320.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,300.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,20.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,780.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,740.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,720.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,700.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,680.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,660.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,640.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,620.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,600.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,580.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,560.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,540.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,520.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,480.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,460.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,440.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,420.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,400.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,380.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,360.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,340.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,40.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,760.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,500.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,800.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,260.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,820.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,80.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,100.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,120.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,140.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,160.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,180.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,200.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,220.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,240.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,60.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,280.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,980.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,960.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,940.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,920.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,900.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,880.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,860.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +641,840.5,60.50301293567208,-69.74849353216396,13241,19.333887168642853,-0.09987088002884094,-640.7250057207146,320.3625028603573,-327.23694638079587 +681,340.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,280.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,300.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,320.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,420.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,360.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,380.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,400.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,240.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,440.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,260.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,160.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,220.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,200.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,180.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,20.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,140.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,120.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,100.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,80.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,60.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,480.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,40.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,460.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,700.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,500.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,520.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,980.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,960.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,920.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,900.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,880.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,860.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,840.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,820.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,800.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,780.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,760.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,740.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,720.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,680.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,660.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,640.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,620.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,600.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,580.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,560.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,540.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +681,940.5,21.880124035408503,-89.05993798229575,12915,19.357336430507164,-0.17126027156719834,-615.946282598327,307.9731412991635,-337.49357428043294 +701,720.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,300.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,100.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,580.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,560.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,540.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,520.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,500.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,480.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,460.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,440.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,20.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,40.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,60.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,80.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,120.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,400.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,140.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,160.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,180.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,200.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,220.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,240.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,260.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,280.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,420.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,320.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,340.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,360.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,600.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,620.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,640.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,840.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,980.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,960.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,940.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,660.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,900.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,880.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,860.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,920.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,820.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,700.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,800.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,680.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,380.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,740.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,760.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +701,780.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569 +881,800.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,820.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,860.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,880.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,900.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,920.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,100.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,940.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,960.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,840.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,80.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,320.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,220.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,360.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,340.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,780.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,300.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,280.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,260.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,240.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,200.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,400.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,180.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,160.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,140.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,120.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,20.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,40.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,60.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,380.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,980.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,420.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,620.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,760.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,740.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,720.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,440.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,680.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,660.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,640.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,700.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,600.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,560.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,540.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,520.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,460.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,480.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,500.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +881,580.5,230.51010910488918,15.25505455244459,10423,18.910102657584186,0.01824918264047629,-1212.0151229058881,606.0075614529441,-469.332004418225 +801,20.5,119.48398328654407,-40.25800835672796,11418,19.451742862147487,-0.04011453242523123,-1079.663460021157,539.8317300105786,-472.60476675429356 +801,140.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,180.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,160.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,80.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,120.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,100.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,60.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,40.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,240.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,220.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,640.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,820.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,680.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,700.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,720.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,740.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,760.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,780.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,840.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,860.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,880.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,900.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,920.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,940.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,960.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,980.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,660.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,620.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,420.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,260.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,280.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,300.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,320.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,340.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,360.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,380.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,440.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,460.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,480.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,500.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,520.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,540.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,560.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +801,580.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557 +901,960.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,980.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,580.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,560.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,940.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,920.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,900.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,360.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,200.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,220.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,240.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,260.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,280.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,300.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,320.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,340.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,380.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,880.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,400.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,420.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,440.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,460.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,480.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,500.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,520.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,540.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,180.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,160.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,140.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,120.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,860.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,840.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,820.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,780.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,760.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,740.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,720.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,700.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,680.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,660.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,640.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,620.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,20.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,40.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,60.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,80.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,600.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,800.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +901,100.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374 +841,440.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,460.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,500.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,520.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,540.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,560.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,580.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,600.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,620.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,640.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,680.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,700.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,720.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,740.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,760.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,780.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,800.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,820.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,840.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,860.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,880.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,480.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,420.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,920.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,400.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,20.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,40.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,60.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,80.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,100.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,120.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,140.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,160.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,180.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,200.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,220.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,240.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,260.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,280.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,300.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,320.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,340.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,360.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,380.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,900.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,660.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,940.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,960.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +841,980.5,210.52360382225675,5.261801911128373,10872,19.646799116997794,0.006222125945146795,-1332.1403492772108,666.0701746386054,-527.5196722884142 +261,940.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,720.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,740.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,760.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,780.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,800.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,200.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,840.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,860.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,880.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,900.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,920.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,960.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,680.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,980.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,180.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,160.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,140.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,120.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,100.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,80.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,60.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,40.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,20.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,700.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,820.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,660.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,420.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,220.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,240.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,260.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,640.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,300.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,320.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,340.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,360.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,380.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,400.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,280.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,440.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,480.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,500.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,520.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,540.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,560.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,580.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,600.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,620.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +261,460.5,310.6820073304064,55.3410036652032,20896,20.520673813169985,0.04875550261434493,-1474.8349250601586,737.4174625300793,-534.0079003274881 +621,500.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,440.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,460.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,480.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,540.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,520.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,400.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,560.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,580.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,420.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,300.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,380.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,360.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,340.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,320.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,280.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,260.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,20.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,60.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,620.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,600.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,160.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,640.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,860.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,220.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,100.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,980.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,960.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,940.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,920.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,900.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,880.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,840.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,660.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,820.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,800.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,780.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,760.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,740.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,720.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,700.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,680.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,80.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,40.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,120.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,200.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,140.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,180.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +621,240.5,52.980777018129125,-73.50961149093544,13293,19.589257503949447,-0.05556398801136937,-1538.0331720234567,769.0165860117284,-689.3896481564545 +781,20.5,428.5181027198938,114.25905135994692,11560,19.429065743944637,0.05284365276672228,-2407.212312756382,1203.606156378191,-847.9917499094051 +781,820.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,920.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,340.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,840.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,860.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,880.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,900.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,980.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,940.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,960.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,780.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,320.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,300.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,280.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,800.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,760.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,360.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,740.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,400.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,420.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,440.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,460.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,480.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,500.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,520.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,540.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,560.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,580.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,600.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,620.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,640.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,660.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,680.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,700.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,720.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,260.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,380.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,60.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,180.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,40.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,80.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,100.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,120.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,140.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,160.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,200.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,220.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +781,240.5,426.24052671539755,113.12026335769878,11560,19.429065743944637,0.05233754028476148,-2408.4132062517206,1204.2066031258603,-849.6169686595724 +821,140.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,240.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,260.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,280.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,220.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,200.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,180.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,160.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,600.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,120.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,100.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,80.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,620.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,60.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,40.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,20.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,300.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,320.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,340.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,880.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,640.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,660.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,680.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,720.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,580.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,760.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,780.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,800.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,820.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,840.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,860.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,900.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,360.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,920.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,560.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,540.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,520.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,500.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,480.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,460.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,440.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,420.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,400.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,380.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,740.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,700.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,980.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,940.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +821,960.5,306.4719536943493,53.23597684717464,11097,19.48274308371632,0.02500523505419165,-3016.5775557703573,1508.2887778851787,-1153.094982640318 +921,720.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,520.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,540.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,560.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,580.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,600.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,620.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,640.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,660.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,680.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,700.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,980.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,740.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,500.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,780.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,800.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,820.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,840.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,860.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,880.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,900.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,920.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,940.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,760.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,460.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,480.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,440.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,20.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,40.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,60.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,80.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,100.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,120.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,140.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,160.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,180.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,200.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,220.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,240.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,260.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,280.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,300.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,320.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,340.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,360.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,380.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,400.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,420.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 +921,960.5,175.39393447993805,-12.303032760030973,10158,18.989958653278205,-0.005696522677935256,-3274.966116269279,1637.4830581346394,-1322.357837539878 diff --git a/strategy/results/bb_midline_hier_search_5m_20260226_192735.csv b/strategy/results/bb_midline_hier_search_5m_20260226_192735.csv new file mode 100644 index 0000000..44ffc48 --- /dev/null +++ b/strategy/results/bb_midline_hier_search_5m_20260226_192735.csv @@ -0,0 +1,2409 @@ +period,std,final_eq,ret_pct,n_trades,win_rate,sharpe,max_dd_u,max_dd_pct,stable_score,use_1m_filter +290,491.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,825.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,877.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,876.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,875.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,874.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,873.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,872.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,871.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,870.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,830.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,829.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,828.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,827.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,824.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,810.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,823.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,822.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,821.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,820.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,819.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,818.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,817.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,816.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,815.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,814.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,813.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,812.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,878.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,879.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,880.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,881.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,658.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,659.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,660.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,661.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,662.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,663.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,664.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,665.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,872.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,873.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,874.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,875.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,876.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,877.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,878.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,879.0,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,890.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,889.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,888.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,887.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,886.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,885.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,884.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,883.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,882.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,811.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,826.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,670.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,505.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,656.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,655.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,654.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,653.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,652.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,651.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,650.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,510.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,509.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,508.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,507.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,506.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,669.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,658.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,503.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,502.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,501.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,500.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,499.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,498.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,497.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,496.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,495.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,494.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,493.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,492.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,657.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,504.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,659.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,662.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,660.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,668.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,667.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,666.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,665.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,664.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,663.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,490.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +290,661.5,243.61657139606652,21.80828569803326,19616,20.39661500815661,0.053326400551732156,-206.99839245306777,103.49919622653387,-60.35115447657306,1 +293,493.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,506.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,885.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,886.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,887.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,888.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,889.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,890.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,503.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,504.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,505.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,507.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,883.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,508.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,509.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,510.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,650.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,651.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,652.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,829.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,828.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,827.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,826.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,884.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,882.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,874.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,881.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,492.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,491.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,825.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,490.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,830.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,870.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,871.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,872.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,873.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,494.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,495.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,496.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,497.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,498.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,499.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,500.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,875.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,876.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,878.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,879.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,880.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,877.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,653.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,824.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,662.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,658.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,657.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,656.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,655.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,654.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,502.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,658.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,659.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,660.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,661.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,663.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,823.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,664.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,665.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,872.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,873.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,874.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,875.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,876.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,877.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,878.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,879.0,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,659.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,660.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,661.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,662.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,822.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,821.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,820.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,819.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,818.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,817.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,816.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,815.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,814.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,813.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,812.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,811.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,810.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,670.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,669.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,668.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,667.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,666.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,665.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,664.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,663.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +293,501.5,254.03449447136072,27.017247235680358,19472,20.218775677896467,0.06865886416462631,-230.03322454886924,115.01661227443462,-64.17213621389183,1 +294,668.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,490.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,667.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,657.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,658.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,659.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,660.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,661.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,662.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,663.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,664.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,665.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,666.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,821.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,655.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,669.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,670.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,810.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,811.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,812.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,813.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,814.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,815.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,816.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,817.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,656.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,654.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,491.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,502.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,492.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,493.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,494.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,495.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,496.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,497.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,498.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,499.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,500.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,501.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,503.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,653.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,504.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,505.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,506.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,507.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,508.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,509.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,510.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,650.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,651.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,652.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,820.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,818.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,822.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,887.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,885.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,884.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,883.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,882.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,881.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,880.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,879.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,878.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,823.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,877.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,888.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,819.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,889.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,890.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,886.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,876.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,875.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,874.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,873.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,872.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,871.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,870.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,830.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,829.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,828.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,827.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,826.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,825.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +294,824.5,199.68691854748374,-0.15654072625812887,19426,20.369607742201172,-0.00044065189971063414,-202.09482205003653,101.04741102501826,-80.99975736906927,1 +295,490.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,658.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,657.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,492.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,659.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,660.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,661.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,491.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,499.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,493.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,494.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,650.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,651.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,652.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,653.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,654.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,655.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,656.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,508.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,507.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,506.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,505.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,504.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,503.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,502.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,501.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,500.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,663.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,498.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,497.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,496.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,495.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,662.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,811.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,664.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,665.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,870.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,871.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,872.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,873.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,874.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,875.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,876.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,877.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,878.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,879.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,880.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,881.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,882.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,883.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,884.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,885.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,886.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,887.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,888.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,889.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,890.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,830.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,829.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,828.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,815.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,666.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,667.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,668.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,669.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,670.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,810.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,812.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,813.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,814.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,816.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,827.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,817.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,818.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,819.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,820.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,821.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,822.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,824.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,825.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,826.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,823.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,510.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +295,509.5,173.36848320503861,-13.315758397480693,19384,20.434378869170448,-0.038727684882974796,-198.88802190114637,99.44401095057319,-93.33569937653495,1 +291,450.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,816.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,663.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,664.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,665.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,666.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,667.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,668.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,669.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,811.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,812.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,813.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,814.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,815.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,817.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,661.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,818.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,819.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,821.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,822.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,823.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,824.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,825.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,826.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,827.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,828.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,829.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,662.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,659.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,872.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,658.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,491.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,492.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,493.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,494.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,495.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,496.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,497.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,498.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,499.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,501.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,502.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,503.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,504.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,505.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,506.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,507.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,508.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,509.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,651.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,652.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,653.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,654.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,655.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,656.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,657.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,871.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,873.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,460.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,874.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,810.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,800.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,790.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,780.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,770.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,760.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,750.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,740.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,730.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,720.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,710.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,700.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,690.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,680.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,660.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,650.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,550.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,540.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,530.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,520.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,510.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,500.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,490.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,480.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,470.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,820.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,830.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,840.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,887.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,875.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,876.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,877.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,878.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,879.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,881.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,882.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,883.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,884.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,885.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,886.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,888.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,850.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,889.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,1000.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,990.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,980.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,970.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,960.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,950.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,890.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,880.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,870.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,860.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,670.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,879.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,900.5,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,665.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,658.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,659.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,660.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,662.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,663.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,664.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,661.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,872.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,874.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,875.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,876.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,877.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,878.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +291,873.0,252.4434647629049,26.221732381452455,19610,20.260071392146862,0.046187917037509484,-318.80999079570074,159.40499539785037,-100.74800893237773,1 +292,820.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,816.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,817.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,818.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,819.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,823.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,821.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,822.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,824.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,814.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,815.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,666.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,812.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,811.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,810.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,670.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,669.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,668.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,667.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,826.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,665.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,664.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,663.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,825.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,873.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,827.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,828.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,888.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,887.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,886.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,885.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,884.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,883.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,882.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,881.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,880.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,879.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,878.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,877.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,876.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,875.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,874.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,661.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,872.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,871.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,870.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,830.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,829.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,662.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,653.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,660.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,496.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,494.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,493.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,492.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,491.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,490.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,658.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,659.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,660.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,661.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,662.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,663.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,664.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,665.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,872.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,873.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,874.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,875.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,876.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,877.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,878.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,879.0,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,495.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,497.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,659.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,498.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,658.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,657.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,656.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,655.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,654.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,890.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,652.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,651.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,650.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,510.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,509.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,508.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,507.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,506.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,505.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,504.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,503.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,502.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,501.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,500.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,499.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,889.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +292,813.5,162.04741012047063,-18.976294939764685,19532,20.243702641818555,-0.06641787769617029,-211.29322924484535,105.64661462242269,-104.29060117005689,1 +289,653.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,666.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,656.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,657.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,658.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,659.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,660.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,661.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,662.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,663.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,664.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,665.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,667.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,818.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,668.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,669.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,490.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,810.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,811.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,812.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,813.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,814.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,815.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,816.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,655.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,654.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,652.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,651.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,491.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,492.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,493.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,494.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,495.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,496.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,497.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,498.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,499.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,500.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,501.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,502.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,503.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,504.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,505.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,506.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,507.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,508.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,509.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,510.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,650.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,817.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,670.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,819.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,883.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,885.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,886.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,887.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,888.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,889.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,820.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,659.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,660.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,661.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,662.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,663.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,664.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,665.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,872.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,873.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,874.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,875.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,876.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,877.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,878.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,879.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,884.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,890.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,658.0,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,825.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,873.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,872.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,882.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,871.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,870.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,830.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,829.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,828.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,827.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,826.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,824.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,823.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,822.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,821.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,875.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,876.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,877.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,878.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,879.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,880.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,881.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +289,874.5,98.1318955163293,-50.934052241835346,19664,20.301057770545157,-0.1753118765509432,-203.1201582589954,101.5600791294977,-134.28585806404482,1 +299,816.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,660.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,815.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,814.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,813.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,811.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,810.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,670.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,669.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,668.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,667.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,666.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,665.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,664.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,663.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,662.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,661.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,812.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,884.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,817.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,881.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,887.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,886.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,885.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,872.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,883.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,882.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,880.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,818.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,879.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,878.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,877.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,876.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,875.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,658.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,888.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,889.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,890.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,871.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,870.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,830.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,829.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,828.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,827.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,826.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,825.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,824.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,823.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,822.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,821.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,820.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,819.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,659.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,657.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,874.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,504.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,873.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,656.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,655.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,654.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,653.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,652.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,651.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,650.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,510.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,509.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,508.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,507.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,505.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,506.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,503.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,496.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,490.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,491.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,492.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,493.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,502.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,495.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,494.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,497.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,498.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,499.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,500.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +299,501.5,115.47514878382452,-42.26242560808774,19144,20.612202256581696,-0.18397653690001733,-232.76414890069879,116.38207445034938,-137.57580361116746,1 +296,491.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,816.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,815.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,814.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,813.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,812.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,492.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,669.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,501.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,507.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,506.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,505.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,504.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,503.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,502.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,499.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,509.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,498.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,497.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,496.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,495.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,494.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,493.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,508.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,651.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,668.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,661.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,667.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,666.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,665.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,664.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,663.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,662.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,659.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,652.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,658.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,657.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,656.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,655.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,654.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,653.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,811.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,880.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,510.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,540.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,460.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,470.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,480.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,490.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,500.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,520.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,530.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,550.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,822.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,650.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,660.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,670.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,680.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,700.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,710.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,720.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,450.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,823.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,740.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,874.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,882.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,881.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,879.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,878.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,877.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,876.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,875.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,873.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,824.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,872.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,871.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,829.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,828.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,827.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,826.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,825.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,730.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,690.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,750.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,950.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,970.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,980.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,990.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,1000.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,760.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,819.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,818.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,817.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,883.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,884.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,885.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,886.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,887.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,888.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,889.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,960.0,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,821.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,900.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,830.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,770.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,890.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,790.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,800.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,810.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,820.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,780.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,840.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,860.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,870.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +296,850.5,75.00472410848523,-62.497637945757376,19304,20.33257355988396,-0.2675450843656243,-202.54566627473156,101.27283313736577,-146.72644546803747,1 +297,661.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,509.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,510.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,650.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,651.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,652.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,653.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,655.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,654.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,660.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,659.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,658.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,657.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,507.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,656.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,508.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,495.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,506.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,505.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,493.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,492.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,491.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,490.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,663.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,494.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,496.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,497.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,498.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,499.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,500.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,501.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,502.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,503.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,504.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,662.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,890.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,664.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,828.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,830.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,870.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,871.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,665.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,873.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,874.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,875.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,876.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,877.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,878.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,879.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,880.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,881.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,882.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,883.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,884.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,885.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,886.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,887.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,888.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,889.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,829.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,872.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,827.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,823.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,821.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,820.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,819.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,818.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,817.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,816.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,815.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,814.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,813.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,812.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,811.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,810.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,826.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,669.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,668.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,667.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,666.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,822.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,670.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,825.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +297,824.5,58.283474555591624,-70.85826272220419,19290,20.368066355624677,-0.3477612200668086,-206.95837969826772,103.47918984913387,-157.81474924231298,1 +288,879.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,873.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,881.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,880.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,879.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,878.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,877.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,876.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,875.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,874.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,872.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,883.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,871.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,870.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,830.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,829.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,828.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,827.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,826.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,825.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,824.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,823.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,882.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,885.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,884.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,662.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,877.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,876.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,875.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,874.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,873.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,872.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,665.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,664.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,663.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,661.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,878.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,660.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,659.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,658.0,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,821.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,890.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,889.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,888.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,887.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,886.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,822.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,495.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,820.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,654.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,652.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,651.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,650.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,510.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,509.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,508.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,507.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,506.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,505.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,504.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,503.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,502.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,501.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,499.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,498.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,497.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,496.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,494.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,493.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,492.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,491.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,490.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,819.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,653.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,500.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,655.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,669.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,817.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,816.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,815.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,814.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,813.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,812.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,811.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,810.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,670.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,656.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,668.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,667.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,666.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,665.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,664.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,663.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,662.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,661.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,660.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,659.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,658.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,657.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +288,818.5,52.63249387410759,-73.68375306294621,19698,20.200020306630115,-0.2855012237698626,-205.4509978409444,102.7254989204722,-159.29016688456232,1 +298,665.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,666.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,663.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,664.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,668.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,667.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,813.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,669.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,670.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,810.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,811.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,812.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,661.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,814.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,662.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,510.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,660.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,651.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,816.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,506.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,507.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,508.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,509.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,650.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,652.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,659.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,653.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,654.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,655.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,656.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,657.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,658.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,815.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,880.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,817.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,881.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,875.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,876.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,877.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,878.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,879.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,504.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,882.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,818.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,883.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,884.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,885.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,886.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,887.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,888.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,874.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,873.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,872.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,871.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,870.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,830.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,829.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,828.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,827.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,826.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,825.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,824.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,823.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,822.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,821.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,820.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,819.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,505.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,890.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,503.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,496.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,889.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,502.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,501.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,500.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,498.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,497.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,499.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,495.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,494.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,493.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,492.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,491.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +298,490.5,62.78231086856529,-68.60884456571736,19222,20.46613255644574,-0.30377677070676196,-223.80979478207846,111.90489739103924,-161.7780837270299,1 +321,900.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,830.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,840.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,850.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,870.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,880.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,890.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,720.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,950.0,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,960.0,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,970.0,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,980.0,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,990.0,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,710.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,810.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,820.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,1000.0,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,800.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,480.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,700.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,790.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,690.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,680.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,670.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,660.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,650.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,550.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,540.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,530.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,520.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,510.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,500.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,490.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,860.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,470.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,450.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,730.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,740.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,780.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,460.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,750.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,760.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +321,770.5,25.287713145723266,-87.35614342713836,18697,19.751831844680964,-0.5240588500351793,-187.01499634355753,93.50749817177876,-168.45084816498354,1 +301,830.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,760.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,770.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,780.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,790.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,810.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,820.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,870.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,840.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,860.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,730.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,880.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,890.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,950.0,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,960.0,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,970.0,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,740.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,680.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,720.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,710.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,50.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,100.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,150.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,200.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,250.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,460.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,470.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,490.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,510.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,520.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,530.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,540.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,660.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,670.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,690.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,480.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,990.0,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,400.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,850.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,450.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,600.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,350.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,300.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,650.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,700.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,750.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,800.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,900.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,550.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,950.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,1000.0,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,980.0,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +301,500.5,52.83984459402632,-73.58007770298684,19058,20.495330045125407,-0.3757296908035501,-226.550345134987,113.27517256749351,-168.70897204662427,1 +316,830.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,820.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,810.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,800.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,790.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,450.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,770.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,840.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,860.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,460.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,870.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,880.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,890.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,900.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,950.0,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,960.0,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,970.0,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,980.0,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,990.0,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,1000.0,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,780.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,850.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,760.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,490.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,510.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,520.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,530.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,540.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,550.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,650.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,660.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,480.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,670.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,750.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,500.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,740.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,730.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,720.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,710.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,700.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,690.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,680.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +316,470.5,97.60705568612973,-51.19647215693514,18761,20.0309151964181,-0.11290792192539431,-299.26401988475976,149.63200994237988,-172.25697517394377,1 +326,740.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,750.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,820.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,810.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,710.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,800.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,790.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,780.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,720.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,730.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,760.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,770.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,830.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,690.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,840.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,850.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,860.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,870.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,880.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,890.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,900.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,950.0,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,960.0,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,970.0,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,980.0,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,990.0,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,1000.0,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,700.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,500.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,680.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,510.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,670.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,450.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,460.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,470.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,490.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,480.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,520.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,530.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,540.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,550.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,650.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +326,660.5,34.34095627579244,-82.82952186210377,18511,19.599157257846684,-0.3594240192270457,-213.263382261021,106.6316911305105,-172.44796299723674,1 +287,873.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,879.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,878.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,877.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,876.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,875.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,874.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,659.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,872.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,665.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,664.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,663.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,662.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,660.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,658.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,661.0,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,828.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,493.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,826.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,872.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,871.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,870.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,830.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,829.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,498.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,827.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,825.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,874.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,824.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,823.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,822.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,821.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,499.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,500.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,501.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,873.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,875.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,503.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,885.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,496.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,497.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,890.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,889.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,888.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,887.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,886.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,884.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,876.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,883.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,882.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,881.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,880.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,879.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,878.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,877.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,502.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,504.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,494.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,811.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,665.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,666.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,667.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,668.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,669.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,670.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,810.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,812.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,663.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,813.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,814.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,815.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,816.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,817.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,818.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,819.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,664.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,662.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,505.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,652.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,506.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,507.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,508.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,509.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,510.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,650.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,651.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,653.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,661.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,654.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,655.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,656.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,657.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,658.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,659.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,660.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,495.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,820.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,491.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,490.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +287,492.5,35.8614695767717,-82.06926521161415,19762,20.043517862564517,-0.3830925002426167,-215.18551578360652,107.59275789180327,-172.74058152796817,1 +286,816.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,888.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,881.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,882.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,883.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,884.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,885.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,886.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,887.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,815.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,889.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,878.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,814.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,813.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,812.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,811.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,669.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,879.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,876.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,877.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,826.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,818.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,819.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,821.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,822.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,823.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,824.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,825.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,827.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,667.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,828.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,829.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,871.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,872.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,873.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,874.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,875.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,668.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,665.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,666.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,504.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,502.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,501.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,499.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,498.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,497.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,496.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,495.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,494.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,493.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,492.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,491.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,1000.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,990.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,980.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,970.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,503.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,505.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,664.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,506.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,663.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,662.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,661.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,659.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,658.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,657.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,656.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,655.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,654.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,653.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,652.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,651.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,509.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,508.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,507.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,960.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,817.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,710.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,520.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,550.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,650.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,660.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,670.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,680.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,690.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,700.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,950.0,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,720.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,730.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,740.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,750.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,760.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,770.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,780.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,790.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,800.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,810.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,820.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,830.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,900.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,890.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,880.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,870.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,860.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,850.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,840.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,530.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,540.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,510.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,470.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,450.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,460.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,500.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,480.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +286,490.5,27.843751242968498,-86.07812437851575,19814,19.854648228525285,-0.3933356352754516,-209.18363814803257,104.59181907401629,-174.4716072610342,1 +751,1000.0,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,950.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,500.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,850.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,800.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,750.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,700.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,650.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,600.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,550.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,900.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,400.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,450.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,350.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,300.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,250.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,200.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,150.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,100.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +751,50.5,127.53055242971492,-36.23472378514254,11780,19.898132427843805,-0.1076378009333422,-345.62059572323346,172.81029786161673,-175.77461568563604,1 +901,0.5,13.45175555605595,-93.27412222197202,10264,30.670303975058456,-0.8952537525217249,-189.5983790965677,94.79918954828385,-179.8565188908598,1 +851,0.5,13.139093314987317,-93.43045334250634,10724,31.90041029466617,-0.8457807204487175,-197.00597073746417,98.50298536873208,-182.38221028287663,1 +351,350.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,100.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,150.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,200.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,250.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,300.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,650.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,400.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,450.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,500.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,550.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,600.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,700.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,750.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,800.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,850.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,900.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,950.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,1000.0,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +351,50.5,9.606531110456654,-95.19673444477168,17857,19.476955815646523,-0.6356682943106791,-200.96548233515287,100.48274116757642,-183.21094691056095,1 +283,814.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,490.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,813.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,491.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,873.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,874.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,812.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,876.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,877.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,878.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,879.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,880.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,881.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,882.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,883.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,884.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,885.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,886.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,887.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,888.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,889.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,890.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,492.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,872.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,810.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,871.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,815.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,816.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,817.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,818.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,819.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,820.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,821.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,822.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,823.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,824.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,825.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,826.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,827.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,828.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,829.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,830.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,870.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,811.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,875.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,670.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,502.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,510.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,509.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,508.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,507.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,506.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,505.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,504.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,669.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,501.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,651.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,500.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,499.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,498.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,497.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,496.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,495.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,494.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,493.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,650.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,503.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,659.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,653.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,663.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,662.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,661.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,660.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,666.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,658.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,657.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,656.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,655.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,654.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,667.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,665.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,652.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,668.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +283,664.5,12.337935603781547,-93.83103219810923,19970,19.729594391587383,-0.5408435961959102,-207.8829465551188,103.94147327755941,-183.4743339745077,1 +281,850.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,840.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,830.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,820.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,810.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,800.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,790.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,780.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,490.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,760.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,860.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,870.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,880.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,890.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,900.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,950.0,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,960.0,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,970.0,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,980.0,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,990.0,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,770.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,670.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,750.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,740.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,510.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,520.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,530.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,540.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,550.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,650.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,660.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,480.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,470.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,450.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,500.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,680.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,690.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,700.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,710.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,720.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,730.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,460.5,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +281,1000.0,43.71804811422551,-78.14097594288725,20048,19.882282521947324,-0.2486243958602587,-260.54080618112494,130.27040309056247,-185.34079116566033,1 +285,509.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,508.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,817.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,816.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,815.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,814.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,813.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,812.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,811.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,810.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,670.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,669.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,668.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,667.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,666.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,665.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,664.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,663.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,662.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,661.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,660.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,659.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,658.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,657.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,656.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,655.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,654.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,653.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,652.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,651.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,650.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,818.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,819.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,820.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,875.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,823.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,824.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,825.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,826.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,827.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,828.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,829.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,830.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,870.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,871.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,872.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,873.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,874.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,876.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,890.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,877.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,878.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,879.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,880.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,881.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,882.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,883.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,884.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,885.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,886.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,887.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,888.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,889.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,510.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,821.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,497.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,822.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,490.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,491.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,492.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,493.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,494.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,495.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,496.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,507.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,498.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,499.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,500.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,501.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,502.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,503.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,504.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,505.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +285,506.5,15.047869077954871,-92.47606546102256,19880,19.728370221327967,-0.5475592863339871,-218.16684601698353,109.08342300849176,-186.3135153038238,1 +801,0.5,10.34628311811287,-94.82685844094357,11410,31.0692375109553,-0.8073996538916506,-208.98636227084955,104.49318113542478,-188.1101991959832,1 +551,0.5,4.519023184638675,-97.74048840768066,14150,33.36395759717314,-0.9378467165440548,-198.0691055074856,99.0345527537428,-188.22229120920355,1 +501,0.5,1.8986708832397656,-99.05066455838012,15372,33.36586000520427,-0.8822266044169348,-198.31333975387093,99.15666987693547,-188.96271971293172,1 +701,0.5,1.6035402845204254,-99.19822985773979,12485,31.229475370444533,-0.8874406539711374,-198.89129268300212,99.44564634150106,-189.40403477859428,1 +551,900.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,850.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,50.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,100.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,150.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,200.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,250.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,300.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,350.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,400.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,450.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,950.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,500.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,550.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,600.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,650.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,700.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,750.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,800.5,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +551,1000.0,11.436749188725278,-94.28162540563736,14159,19.6200296631118,-0.5181379138095433,-224.62755043239733,112.31377521619868,-190.3503005443108,1 +751,0.5,6.787536497792063,-96.60623175110396,11769,31.701928795989463,-0.8973785204314527,-208.02359739762167,104.01179869881084,-190.58421295533006,1 +101,0.5,2.9344181713149435,-98.53279091434253,35484,40.70003381805884,-1.0207595955600905,-200.5343407319586,100.2671703659793,-190.99564235384705,1 +401,1000.0,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,400.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,50.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,100.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,150.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,200.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,250.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,300.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,350.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,450.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,950.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,500.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,600.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,650.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,700.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,750.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,800.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,850.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,900.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +401,550.5,6.006954718238241,-96.99652264088088,17153,19.413513671077943,-0.554621338370883,-218.38418033295903,109.19209016647953,-191.0056508345151,1 +351,0.5,3.361096585733224,-98.31945170713338,17810,36.27175743964065,-1.2209929603510115,-197.10747569782964,98.55373784891482,-191.8143575104774,1 +451,0.5,2.329711769566727,-98.83514411521664,16156,34.27209705372617,-1.1239876151275339,-199.45433646360712,99.72716823180356,-192.1047300821899,1 +284,657.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,504.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,494.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,495.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,496.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,497.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,498.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,499.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,500.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,501.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,502.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,503.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,505.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,666.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,506.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,507.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,508.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,509.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,510.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,650.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,810.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,670.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,871.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,668.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,493.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,492.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,491.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,822.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,658.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,870.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,830.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,829.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,828.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,827.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,826.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,825.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,824.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,823.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,821.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,490.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,820.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,819.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,818.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,817.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,816.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,815.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,814.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,813.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,812.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,811.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,667.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,669.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,665.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,887.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,874.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,875.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,664.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,876.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,877.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,878.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,879.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,880.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,881.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,882.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,883.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,884.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,885.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,886.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,888.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,872.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,889.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,890.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,656.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,655.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,654.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,653.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,652.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,651.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,659.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,660.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,661.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,662.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,663.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +284,873.5,4.392776873192187,-97.8036115634039,19958,19.646257139993985,-0.6921390391247239,-215.20797390381568,107.60398695190784,-192.19246959442688,1 +401,0.5,3.0098224997841756,-98.49508875010791,17114,34.983054808928365,-1.24562923011871,-197.42490102080006,98.71245051040003,-192.41259991985248,1 +1000,0.5,6.309068026333709,-96.84546598683315,9379,30.408359100117284,-0.7245781477429075,-217.4573841644964,108.7286920822482,-192.5233574255466,1 +251,0.5,1.2582263129595197,-99.37088684352024,21094,37.47985209064189,-1.1405413234039807,-199.63192120071835,99.81596060035918,-192.91015120465536,1 +201,450.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,50.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,850.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,800.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,750.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,700.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,650.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,600.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,550.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,500.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,900.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,400.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,350.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,300.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,250.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,200.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,150.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,100.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,950.5,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +201,1000.0,9.7202672056566,-95.1398663971717,24243,20.735882522790085,-0.805097998664356,-220.7396343409598,110.3698171704799,-193.0968961175279,1 +301,0.5,3.288758436016597,-98.3556207819917,18999,36.78614663929681,-0.9796482828217248,-210.34848032205863,105.17424016102932,-194.25079230467585,1 +201,0.5,0.8960823320970013,-99.5519588339515,24082,38.36060127896354,-1.1894204188425357,-201.2616833266314,100.6308416633157,-194.3296771907145,1 +151,0.5,0.447147524480946,-99.77642623775952,28965,38.933195235629206,-1.118503991656886,-203.0492986206653,101.52464931033265,-194.41819358590828,1 +51,0.5,0.2647932025146436,-99.86760339874267,50009,41.39054970105381,-1.3185573829105623,-200.91043500058367,100.45521750029182,-196.05446599390288,1 +51,100.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,1000.0,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,950.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,900.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,850.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,800.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,750.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,700.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,650.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,600.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,550.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,500.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,450.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,400.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,350.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,300.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,250.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,200.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,150.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +51,50.5,0.09593023554493305,-99.95203488222754,51874,22.130547094883756,-0.8993527953523606,-213.73348855456487,106.86674427728245,-196.23766384828184,1 +251,400.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,900.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,850.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,50.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,100.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,150.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,200.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,250.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,300.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,350.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,450.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,500.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,550.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,600.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,650.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,700.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,750.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,800.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,1000.0,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +251,950.5,11.523950753177985,-94.23802462341101,21200,20.42924528301887,-0.4469101538511351,-243.2936639641133,121.64683198205665,-196.91841205526995,1 +451,100.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,550.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,50.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,150.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,200.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,250.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,300.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,350.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,450.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,500.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,400.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,600.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,800.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,650.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,950.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,900.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,850.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,1000.0,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,750.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +451,700.5,3.181286343448621,-98.40935682827569,16171,19.460763094428298,-0.5248448670999485,-231.19737050648752,115.59868525324374,-197.18644343607008,1 +651,0.5,8.018313005737676,-95.99084349713117,13136,32.14068209500609,-0.8122633291075041,-232.77203302005913,116.38601651002955,-198.84681665444486,1 +951,0.5,2.5894181323552834,-98.70529093382235,9665,30.17071908949819,-0.8040188151074918,-230.08606629610864,115.04303314805433,-200.38794323355572,1 +1,1000.0,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,950.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,900.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,850.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,800.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,750.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,700.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,650.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,600.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,550.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,500.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,450.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,400.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,350.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,300.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,250.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,200.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,150.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,100.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,0.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +1,50.5,7.332091932035972e-15,-100.0,314852,34.19479628523877,-1.9254884054263868,-199.9,99.95,-203.06586086511663,1 +601,0.5,3.1473924625026317,-98.42630376874868,13683,32.53672440254331,-0.749362829772547,-247.87957672599615,123.93978836299809,-206.57048841641773,1 +501,1000.0,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,500.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,200.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,250.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,300.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,350.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,400.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,450.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,100.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,550.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,950.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,600.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,650.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,700.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,750.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,800.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,850.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,900.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,150.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +501,50.5,2.0680528205830533,-98.96597358970847,15381,19.29003315779208,-0.5182752037530948,-256.6618012939444,128.3309006469722,-207.84999655232338,1 +101,1000.0,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,550.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,50.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,100.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,150.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,200.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,250.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,300.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,350.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,450.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,500.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,400.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,600.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,800.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,950.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,900.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,650.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,850.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,750.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +101,700.5,2.46021630053702,-98.7698918497315,36119,21.254741271906752,-0.4895899161479696,-271.6273063072573,135.81365315362865,-213.29589336641004,1 +276,820.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,800.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,770.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,780.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,760.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,730.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,830.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,840.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,850.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,750.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,740.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,720.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,450.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,470.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,1000.0,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,990.0,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,980.0,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,970.0,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,960.0,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,950.0,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,790.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,900.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,890.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,880.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,870.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,860.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,460.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,480.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,710.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,490.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,500.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,510.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,520.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,530.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,540.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,550.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,650.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,660.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,670.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,680.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,690.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,700.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +276,810.5,46.67336870965778,-76.66331564517111,20398,20.10000980488283,-0.23040544361361906,-348.1962451283465,174.09812256417325,-218.70667901987315,1 +151,250.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,300.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,50.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,350.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,400.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,450.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,500.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,550.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,600.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,650.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,700.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,750.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,800.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,850.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,900.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,950.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,1000.0,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,200.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,150.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +151,100.5,1.0319157374744798,-99.48404213126275,29301,20.337189857001466,-0.5489473920483456,-298.0937314350697,149.04686571753484,-225.30890340987077,1 +306,960.0,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,690.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,710.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,510.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,680.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,670.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,660.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,650.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,550.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,540.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,530.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,520.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,500.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,700.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,490.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,480.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,470.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,460.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,450.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,950.0,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,980.0,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,990.0,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,970.0,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,1000.0,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,810.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,720.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,880.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,870.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,860.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,850.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,840.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,830.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,820.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,800.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,900.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,790.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,780.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,770.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,760.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,750.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,740.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,730.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +306,890.5,13.371364474679865,-93.31431776266007,19086,19.909881588598974,-0.24798241101909116,-431.4764485834907,215.73822429174533,-268.88068612828545,1 +651,100.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,50.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,1000.0,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,850.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,500.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,900.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,950.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,700.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,750.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,800.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,600.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,550.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,650.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,450.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,400.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,350.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,300.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,250.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,200.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +651,150.5,48.797350560727956,-75.60132471963603,13142,19.532795617105464,-0.14105832822928308,-535.6929638418737,267.84648192093687,-291.5712101951369,1 +951,400.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,50.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,150.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,200.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,250.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,300.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,350.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,100.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,450.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,500.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,550.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,600.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,650.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,700.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,800.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,850.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,900.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,950.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,1000.0,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +951,750.5,79.30891953823279,-60.34554023088361,9672,19.24110835401158,-0.1026005452270189,-623.5131955721574,311.7565977860787,-310.98202500247083,1 +601,200.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,50.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,600.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,1000.0,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,950.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,900.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,850.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,800.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,750.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,700.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,650.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,550.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,100.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,500.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,450.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,400.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,350.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,300.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,250.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +601,150.5,3.0597660326602996,-98.47011698366985,13680,19.1812865497076,-0.18459283577348395,-553.0425949461219,276.52129747306094,-321.90226899140043,1 +1000,150.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,50.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,100.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,650.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,200.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,950.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,900.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,850.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,800.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,750.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,700.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,600.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,550.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,500.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,450.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,400.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,350.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,300.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,250.5,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +1000,1000.0,131.57070695237223,-34.21464652381388,9386,19.582356701470275,-0.04584403218457909,-790.8931283244997,395.44656416224984,-351.12202623982876,1 +701,50.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,300.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,150.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,100.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,250.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,200.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,650.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,950.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,900.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,850.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,800.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,750.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,700.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,1000.0,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,600.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,500.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,450.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,400.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,350.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +701,550.5,14.503672746728883,-92.74816362663556,12501,19.598432125429966,-0.15690585751773198,-643.6658567532712,321.8329283766356,-352.0973766181569,1 +311,750.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,680.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,690.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,700.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,720.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,730.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,740.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,780.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,760.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,770.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,790.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,800.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,810.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,660.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,670.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,500.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,650.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,550.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,540.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,530.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,520.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,510.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,830.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,490.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,480.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,470.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,460.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,450.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,990.0,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,1000.0,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,820.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,710.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,840.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,900.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,850.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,980.0,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,960.0,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,950.0,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,970.0,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,890.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,880.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,870.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +311,860.5,48.559239872587156,-75.72038006370641,18843,19.96497373029772,-0.12462160989910216,-719.60228622143,359.801143110715,-365.0567538710676,1 +801,550.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,900.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,850.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,800.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,750.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,700.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,650.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,600.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,300.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,500.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,450.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,400.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,350.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,250.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,200.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,150.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,100.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,50.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,950.5,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +801,1000.0,118.75268396562913,-40.623658017185434,11418,19.451742862147487,-0.04049557086835689,-1080.0440346768748,540.0220173384374,-473.1272187383557,1 +851,150.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,750.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,250.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,300.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,100.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,400.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,450.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,500.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,550.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,600.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,650.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,700.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,350.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,800.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,900.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,950.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,1000.0,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,200.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,50.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +851,850.5,316.5964254122197,58.298212706109844,10734,20.18818706912614,0.06259789806970045,-1385.5342422406081,692.7671211203041,-495.164309413297,1 +901,500.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,900.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,850.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,800.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,750.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,700.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,650.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,600.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,550.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,300.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,450.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,400.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,350.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,250.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,200.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,150.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,950.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,100.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,50.5,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 +901,1000.0,563.7908687274055,181.89543436370275,10270,19.561830574488802,0.09336862353854584,-1726.9726968393975,863.4863484196987,-507.77322088959374,1 diff --git a/strategy/results/bb_midline_hier_search_5m_20260226_192735_yearly.csv b/strategy/results/bb_midline_hier_search_5m_20260226_192735_yearly.csv new file mode 100644 index 0000000..5bfd46a --- /dev/null +++ b/strategy/results/bb_midline_hier_search_5m_20260226_192735_yearly.csv @@ -0,0 +1,7 @@ +year,year_end_equity,year_return_pct +2020,54.050106322289274,-72.97494683885536 +2021,94.65774624824195,75.12962080743739 +2022,200.96942517386574,112.31165238903867 +2023,141.40095297115792,-29.64056455412212 +2024,192.12283166096822,35.87095958268133 +2025,243.61657139606652,26.802509254062695